blob: 13be0f0677e4629464f0bda8788d465939af8f8b (
plain) (
tree)
|
|
{
config,
lib,
pkgs,
...
}: {
nix = {
# gc = {
# automatic = true;
# dates = "daily";
# options = "--delete-older-than 3";
# };
settings = {
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes"];
trusted-users = [
"root"
"nixremote"
"@wheel"
];
};
};
}
|