made hosts/main.nix so that i can also use it on the hpm-laptop.nix...

This commit is contained in:
Sebastian Moser
2023-10-31 13:57:21 +00:00
parent fef4f8e219
commit 30fe098ee9
5 changed files with 82 additions and 72 deletions

View File

@@ -43,6 +43,17 @@
specialArgs = { inherit inputs confDir workDir secretsDir persistentDir self; };
modules = [
./hosts/main.nix
./hardware/my-hp-laptop.nix
];
};
"c2vi-hpm" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs confDir workDir secretsDir persistentDir self; };
modules = [
./hosts/main.nix
./hardware/hpm-laptop.nix
];
};