diff --git a/lib/hostHelper.nix b/lib/hostHelper.nix index 48f46ac..21eace4 100644 --- a/lib/hostHelper.nix +++ b/lib/hostHelper.nix @@ -5,7 +5,7 @@ inArgs: hostname: hostOptions: let else inArgs.nixpkgs.lib.nixosSystem; in nixosSystem { - specialArgs = {inherit inArgs;}; + specialArgs = {inArgs = inArgs;}; modules = [ ../hosts/${hostname} #./debug.nix diff --git a/outputs.nix b/outputs.nix index 77cf49c..67d0073 100644 --- a/outputs.nix +++ b/outputs.nix @@ -27,7 +27,7 @@ in { #packages = forAllSystems (system: import ./pkgs nixpkgs.legacyPackages.${system}); # Your custom packages and modifications, exported as overlays - overlays = import ./overlays {inherit inArgs;}; + overlays = import ./overlays {inArgs = inArgs;}; # Reusable nixos modules you might want to export # These are usually stuff you would upstream into nixpkgs