fixes & cleanup

This commit is contained in:
soraefir
2026-06-20 10:19:18 +02:00
parent b55afcfdf6
commit 9169630b43
10 changed files with 204 additions and 103 deletions
+5
View File
@@ -14,6 +14,11 @@ in with lib; {
type = types.enum [ "nixos" "macos" "home" ];
default = "nixos";
};
system = mkOption {
type = types.enum [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
default = "x86_64-linux";
description = "Nix platform used to evaluate this host.";
};
defaultUser = mkOption { type = types.str; };
make = import ./make.nix {inherit lib;};
net = import ./net.nix {inherit lib;};