Price Hiller
02334f5601
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m14s
18 lines
273 B
Nix
Executable File
18 lines
273 B
Nix
Executable File
{ pkgs, ... }:
|
|
{
|
|
nix = {
|
|
settings = {
|
|
experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
];
|
|
auto-optimise-store = true;
|
|
trusted-users = [ "@wheel" ];
|
|
};
|
|
gc = {
|
|
automatic = true;
|
|
dates = "daily";
|
|
};
|
|
};
|
|
}
|