Files
platform/modules/default.nix
2026-01-23 13:12:48 +01:00

28 lines
354 B
Nix

{ lib, ...}:
with lib;
{
options.features.host = {
name = mkOption {
type = types.str;
default = null;
};
address = mkOption {
type = types.str;
default = null;
};
};
imports = [
./k8s
./hpc
./mft
./fs
./pki/certs.nix
./gitlab-runner.nix
./gitea-runner.nix
../nixos
];
}