flake: group up nixosConfigurations
This commit is contained in:
parent
573a6ea0bc
commit
a79d27ff22
10
flake.nix
10
flake.nix
|
@ -32,7 +32,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, home-manager, ... } @inputs: {
|
outputs = { self, nixpkgs, home-manager, ... } @inputs: {
|
||||||
nixosConfigurations.poseidon = nixpkgs.lib.nixosSystem rec {
|
|
||||||
|
nixosConfigurations = {
|
||||||
|
|
||||||
|
poseidon = nixpkgs.lib.nixosSystem rec {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
./poseidon.nix
|
./poseidon.nix
|
||||||
|
@ -71,7 +74,8 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
nixosConfigurations.boreal = nixpkgs.lib.nixosSystem rec {
|
|
||||||
|
boreal = nixpkgs.lib.nixosSystem rec {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
./boreal.nix
|
./boreal.nix
|
||||||
|
@ -109,5 +113,7 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue