blob: 2ad20c374cc49042c01525882958946b0da1c830 (
plain) (
tree)
|
|
# Nix related settings
{ lib, pkgs, ... }: {
nix = {
package = pkgs.nixFlakes;
extraOptions = ''
experimental-features = nix-command flakes
'';
autoOptimiseStore = true;
trustedUsers = [ "root" "@wheel" ];
gc = {
automatic = true;
options = "--delete-older-than 14d";
};
};
}
|