28 lines
354 B
Nix
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
|
|
];
|
|
}
|