fix: add k8s and hpc modules to main repo

This commit is contained in:
Jonas Juselius
2025-06-30 12:21:05 +02:00
parent 4aa9fa677a
commit bc3a034654
46 changed files with 4393 additions and 0 deletions

24
modules/default.nix Normal file
View File

@@ -0,0 +1,24 @@
{ lib, ...}:
with lib;
{
options.features.host = {
name = mkOption {
type = types.str;
default = null;
};
address = mkOption {
type = types.str;
default = null;
};
};
imports = [
./k8s
./hpc
./fs
./pki/certs.nix
../nixos
];
}