Files
nixos-config/hosts/common/global/nix.nix
T
Miguel Palhas 6c397bc61a fixes
2026-03-25 16:40:15 +00:00

28 lines
423 B
Nix

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