10 lines
329 B
Nix
10 lines
329 B
Nix
{ environment, ... }: {
|
|
environment.variables.NIXPKGS_ALLOW_UNFREE = "1";
|
|
nix.extraOptions = "experimental-features = nix-command flakes";
|
|
nix.gc.automatic = false;
|
|
nix.gc.dates = "daily";
|
|
nix.gc.options = "--delete-older-than 7d";
|
|
nix.settings.auto-optimise-store = true;
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|