refactor: move system creation to function
This commit is contained in:
parent
f2e1e9c5d2
commit
bb7342d876
1 changed files with 22 additions and 8 deletions
30
flake.nix
30
flake.nix
|
@ -25,15 +25,15 @@
|
|||
};
|
||||
|
||||
lib = nixpkgs.lib;
|
||||
in
|
||||
{
|
||||
nixosConfigurations = {
|
||||
marr = lib.nixosSystem {
|
||||
|
||||
mkSystem =
|
||||
{
|
||||
hostname,
|
||||
extraModules ? [ ],
|
||||
}:
|
||||
lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
./hosts/marr/configuration.nix
|
||||
#inputs.nixos-hardware.nixosModules.dell-xps-15-9510-nvidia
|
||||
];
|
||||
modules = [ ./hosts/${hostname}/configuration.nix ] ++ extraModules;
|
||||
specialArgs = {
|
||||
inherit
|
||||
inputs
|
||||
|
@ -41,9 +41,23 @@
|
|||
system
|
||||
lib
|
||||
pkgs
|
||||
hostname
|
||||
;
|
||||
|
||||
username = "nico";
|
||||
};
|
||||
};
|
||||
in
|
||||
{
|
||||
nixosConfigurations = {
|
||||
marr = mkSystem {
|
||||
hostname = "marr";
|
||||
extraModules = [
|
||||
#inputs.nixos-hardware.nixosModules.dell-xps-15-9510-nvidia
|
||||
];
|
||||
};
|
||||
|
||||
brontes = mkSystem { hostname = "brontes"; };
|
||||
};
|
||||
|
||||
devShells."${system}".default = pkgs.mkShell {
|
||||
|
|
Loading…
Add table
Reference in a new issue