Files
nix/hosts/common/global/nix.nix
T
Miguel Palhas e2f324ffaa Setting up rofi
2024-10-05 11:44:41 +01:00

28 lines
424 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;
}