flake: remove deprecated lib.nixosSystem system argument
This commit is contained in:
parent
a4804d9cdc
commit
26f1219d85
1 changed files with 5 additions and 5 deletions
10
flake.nix
10
flake.nix
|
|
@ -140,11 +140,11 @@
|
|||
};
|
||||
nixosConfigurations = {
|
||||
i15 = lib.nixosSystem {
|
||||
inherit system specialArgs;
|
||||
inherit specialArgs;
|
||||
modules = [ ./hosts/i15 ] ++ common_modules;
|
||||
};
|
||||
monolith = lib.nixosSystem {
|
||||
inherit system specialArgs;
|
||||
inherit specialArgs;
|
||||
modules = [
|
||||
./hosts/monolith
|
||||
./system/monolith-gitlab-runner.nix
|
||||
|
|
@ -154,14 +154,14 @@
|
|||
++ common_modules;
|
||||
};
|
||||
double-rainbow = lib.nixosSystem {
|
||||
inherit system specialArgs;
|
||||
inherit specialArgs;
|
||||
modules = [
|
||||
./hosts/double-rainbow
|
||||
]
|
||||
++ common_modules;
|
||||
};
|
||||
pixie = lib.nixosSystem {
|
||||
inherit system specialArgs;
|
||||
inherit specialArgs;
|
||||
modules = [
|
||||
./hosts/pixie.nix
|
||||
]
|
||||
|
|
@ -174,7 +174,7 @@
|
|||
];
|
||||
};
|
||||
phantom = lib.nixosSystem {
|
||||
inherit system specialArgs;
|
||||
inherit specialArgs;
|
||||
modules = [
|
||||
{ nixpkgs.pkgs = pkgs; }
|
||||
./hosts/phantom
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue