nixos-config/common/nix.nix
2025-07-20 13:02:43 -04:00

18 lines
No EOL
331 B
Nix

{ config, pkgs, ... }:
{
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;
}