From 6168b5e200625435d50a0524fc2f79dc3d732cf4 Mon Sep 17 00:00:00 2001 From: Ranomier <> Date: Mon, 9 Jun 2025 17:24:09 +0200 Subject: [PATCH] fix: avoid inherit --- lib/hostHelper.nix | 2 +- outputs.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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