add nixpkgs path

This commit is contained in:
Hadi 2024-10-23 19:59:57 +02:00
parent f38ee3051c
commit a74e365403

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