nixos-config/common/nix.nix
2025-07-24 12:19:27 -04:00

18 lines
No EOL
325 B
Nix

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