From 26f1219d851741b1f4346aa163d285ca78437ecf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Sun, 22 Feb 2026 19:27:11 -0300 Subject: [PATCH] flake: remove deprecated lib.nixosSystem system argument --- flake.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 7b8b624..14ab992 100644 --- a/flake.nix +++ b/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