NixOS/hosts/luna/modules/nix.nix

17 lines
293 B
Nix
Raw Normal View History

2023-10-27 01:46:14 -05:00
{ pkgs, ... }:
{
nix = {
settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
trusted-users = ["@wheel"];
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
};
}