This commit is contained in:
iFargle 2023-10-04 19:53:38 +09:00
parent e9d22948ee
commit f79a861b3b
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@
}; };
# Helper function for generating host configs # Helper function for generating host configs
mkHost = { mkMinHost = {
hostname, hostname,
username ? "albert", username ? "albert",
desktop ? null, desktop ? null,
@ -43,7 +43,7 @@
}: inputs.nixpkgs.lib.nixosSystem { }: inputs.nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs desktop hostname username stateVersion gpu platform theme; }; specialArgs = { inherit inputs outputs desktop hostname username stateVersion gpu platform theme; };
modules = [ modules = [
../nixos/minimal.nix ../nixos/small.nix
inputs.sops-nix.nixosModules.sops inputs.sops-nix.nixosModules.sops
]; ];
}; };