2023-12-07 09:05:24 -06:00
|
|
|
{ pkgs, ... }: {
|
2023-10-27 01:46:14 -05:00
|
|
|
nix = {
|
|
|
|
settings = {
|
|
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
auto-optimise-store = true;
|
2023-12-15 22:26:13 -06:00
|
|
|
trusted-users = [ "@wheel" ];
|
2023-10-27 01:46:14 -05:00
|
|
|
};
|
|
|
|
gc = {
|
|
|
|
automatic = true;
|
2023-12-07 09:05:24 -06:00
|
|
|
dates = "daily";
|
2023-10-27 01:46:14 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|