refactoring

This commit is contained in:
2025-08-03 19:16:34 +03:00
parent 81a69917ac
commit 15e3ebe064
9 changed files with 40 additions and 19 deletions
+13 -1
View File
@@ -7,7 +7,6 @@
{
imports = [
./essentials
#./services
# Flake modules
inputs.home-manager.nixosModules.home-manager # home-manager module
@@ -36,4 +35,17 @@
};
};
};
# Options
options.device.type = lib.mkOption {
type = lib.types.enum [
"minimal"
"primary"
"server"
"vds"
"wsl"
];
default = "minimal"; # Значение по умолчанию, если не указано
description = "Type of device for this host.";
};
}