Files
dots/nixos/global/nix.nix
2025-12-01 18:24:34 +01:00

20 lines
387 B
Nix

{pkgs, ...}: {
nix = {
package = pkgs.nix;
settings = {
auto-optimise-store = true;
trusted-users = ["root" "@wheel"];
experimental-features = "nix-command flakes";
warn-dirty = false;
};
gc = {
automatic = true;
options = "--delete-older-than 2d";
};
optimise.automatic = true;
};
nixpkgs.config.allowUnfree = true;
}