nixos-config/common/nix.nix

15 lines
321 B
Nix
Raw Normal View History

2024-12-19 20:42:14 -08:00
{config, ...}: {
nix = {
gc = {
automatic = true;
options = "--delete-older-than 30d";
};
settings = {
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes"];
trusted-users = [config.constants.userName];
};
};
2025-02-24 02:22:49 +08:00
nixpkgs.config.allowUnfree = true;
2024-12-19 20:42:14 -08:00
}