nixos-config/modules/common/nix.nix
wo2wz ceab421dfb nix: disable "git tree is dirty" nix warning
long overdue but i was just reminded of this
2025-10-26 18:15:27 -04:00

19 lines
No EOL
351 B
Nix
Executable file

{ config, ... }:
{
nix = {
channel.enable = false;
gc.automatic = true;
optimise = {
automatic = true;
dates = [ "weekly" ];
};
settings = {
experimental-features = [ "nix-command" "flakes" ];
download-buffer-size = 524288000;
warn-dirty = false;
};
};
nixpkgs.config.allowUnfree = true;
}