fix(nix): warnings

This commit is contained in:
2025-11-06 20:27:28 +01:00
parent f9f3abee19
commit 21f3c31bd3
11 changed files with 110 additions and 113 deletions

View File

@@ -33,11 +33,6 @@ in
default = false;
description = "Whether to install laptop-specific packages.";
};
server.enable = mkOption {
type = types.bool;
default = false;
description = "Whether to install server-specific packages.";
};
dev.enable = mkOption {
type = types.bool;
default = false;
@@ -100,9 +95,6 @@ in
(mkIf cfg.laptop.enable [
])
(mkIf cfg.server.enable [
])
(mkIf cfg.dev.enable [
])
];