Files
nix/hosts/common/global/nix.nix
T
Miguel Palhas 327b575dc5 🌅
2024-09-29 10:31:52 +01:00

16 lines
372 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;
}