diff --git a/flake/checks.nix b/flake/checks.nix index 67e8063..01c2a7b 100644 --- a/flake/checks.nix +++ b/flake/checks.nix @@ -1,4 +1,4 @@ -{ self, inputs, ... }: +{ inputs, self, ... }: { perSystem = { pkgs, ... }: diff --git a/flake/hosts.nix b/flake/hosts.nix index 7af204e..612fa74 100644 --- a/flake/hosts.nix +++ b/flake/hosts.nix @@ -1,6 +1,6 @@ { - self, inputs, + self, lib, ... }: @@ -13,7 +13,7 @@ in name: inputs.nixpkgs.lib.nixosSystem { specialArgs = { - inherit self inputs; + inherit inputs self; }; modules = [ "${self}/hosts/${name}" diff --git a/flake/wrappers.nix b/flake/wrappers.nix index f0921b8..0ee4423 100644 --- a/flake/wrappers.nix +++ b/flake/wrappers.nix @@ -1,8 +1,8 @@ { flake.wrappers.default = { - self, inputs, + self, pkgs, lib, ... diff --git a/modules/home/sops.nix b/modules/home/sops.nix index b25be82..1f1d5fc 100644 --- a/modules/home/sops.nix +++ b/modules/home/sops.nix @@ -1,7 +1,7 @@ { config, - self, inputs, + self, lib, ... }@moduleArgs: diff --git a/modules/system/comma.nix b/modules/system/comma.nix index efacf8f..98cf7c8 100644 --- a/modules/system/comma.nix +++ b/modules/system/comma.nix @@ -1,6 +1,6 @@ { - inputs, config, + inputs, lib, ... }: diff --git a/modules/system/sops.nix b/modules/system/sops.nix index 2bc3678..029aca4 100644 --- a/modules/system/sops.nix +++ b/modules/system/sops.nix @@ -1,7 +1,7 @@ { - self, - inputs, config, + inputs, + self, lib, ... }: diff --git a/users/common.nix b/users/common.nix index 9486cf8..3c21b9e 100644 --- a/users/common.nix +++ b/users/common.nix @@ -1,4 +1,4 @@ -{ self, inputs, ... }: +{ inputs, self, ... }: { imports = [ inputs.home-manager.nixosModules.home-manager ]; @@ -6,7 +6,7 @@ useGlobalPkgs = true; useUserPackages = true; extraSpecialArgs = { - inherit self inputs; + inherit inputs self; }; }; diff --git a/wrappers/rofi/default.nix b/wrappers/rofi/default.nix index cff0c8a..34cadef 100644 --- a/wrappers/rofi/default.nix +++ b/wrappers/rofi/default.nix @@ -1,9 +1,4 @@ -{ - inputs, - pkgs, - lib, - ... -}: +{ inputs, pkgs, ... }: { theme ? "dark", }: