diff --git a/nixos/nix.nix b/nixos/nix.nix index cce16cd..ec0a308 100644 --- a/nixos/nix.nix +++ b/nixos/nix.nix @@ -1,4 +1,4 @@ -{ config, ... }: +{ config, inputs, ... }: let autoGarbageCollector = config.var.autoGarbageCollector; in { nixpkgs.config = { @@ -6,6 +6,7 @@ in { allowBroken = true; }; nix = { + nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; extraOptions = '' warn-dirty = false '';