nixos-combined-flake/modules/nixos/base/nixos/default.nix

21 lines
379 B
Nix

{overlays, ...}: {
nixpkgs = {
config.allowUnfree = true;
inherit overlays;
};
nix = {
optimise = {
automatic = true;
};
settings = {
experimental-features = ["nix-command" "flakes"];
auto-optimise-store = true;
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
};
}