nix-config/modules/nix/default.nix

20 lines
374 B
Nix

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