This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
linux/.config/linux/system/module/common/Nix.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;
}