This commit is contained in:
2025-08-04 17:14:31 +03:00
parent 86732e91df
commit a31c1303c9
3 changed files with 2 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
{
config,
lib,
...
}:
{
options = {
device = {
type = lib.mkOption {
type = lib.types.enum [
"minimal"
"primary"
"server"
"vds"
"wsl"
];
default = "minimal";
description = "Type of device for this host.";
};
username = lib.mkOption {
type = lib.types.str;
default = "${inputs.zeroq.devices.admin}";
description = "Username for host";
};
};
};
}