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 = {
|
nixosConfigurations = {
|
||||||
i15 = lib.nixosSystem {
|
i15 = lib.nixosSystem {
|
||||||
inherit system specialArgs;
|
inherit specialArgs;
|
||||||
modules = [ ./hosts/i15 ] ++ common_modules;
|
modules = [ ./hosts/i15 ] ++ common_modules;
|
||||||
};
|
};
|
||||||
monolith = lib.nixosSystem {
|
monolith = lib.nixosSystem {
|
||||||
inherit system specialArgs;
|
inherit specialArgs;
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/monolith
|
./hosts/monolith
|
||||||
./system/monolith-gitlab-runner.nix
|
./system/monolith-gitlab-runner.nix
|
||||||
|
|
@ -154,14 +154,14 @@
|
||||||
++ common_modules;
|
++ common_modules;
|
||||||
};
|
};
|
||||||
double-rainbow = lib.nixosSystem {
|
double-rainbow = lib.nixosSystem {
|
||||||
inherit system specialArgs;
|
inherit specialArgs;
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/double-rainbow
|
./hosts/double-rainbow
|
||||||
]
|
]
|
||||||
++ common_modules;
|
++ common_modules;
|
||||||
};
|
};
|
||||||
pixie = lib.nixosSystem {
|
pixie = lib.nixosSystem {
|
||||||
inherit system specialArgs;
|
inherit specialArgs;
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/pixie.nix
|
./hosts/pixie.nix
|
||||||
]
|
]
|
||||||
|
|
@ -174,7 +174,7 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
phantom = lib.nixosSystem {
|
phantom = lib.nixosSystem {
|
||||||
inherit system specialArgs;
|
inherit specialArgs;
|
||||||
modules = [
|
modules = [
|
||||||
{ nixpkgs.pkgs = pkgs; }
|
{ nixpkgs.pkgs = pkgs; }
|
||||||
./hosts/phantom
|
./hosts/phantom
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue