add nixpkgs path

Former-commit-id: a74e365403
This commit is contained in:
Hadi
2024-10-23 19:59:57 +02:00
parent e0dcde257a
commit 3e2f341bdb

View File

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