fix: avoid inherit

This commit is contained in:
Ranomier 2025-06-09 17:24:09 +02:00
parent 8af91887ca
commit 6168b5e200
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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