nix-configs/modules/nix.nix

31 lines
510 B
Nix

{
rs-programs,
...
}:
{
nix = {
extraOptions = ''
experimental-features = nix-command flakes pipe-operator
keep-outputs = true
keep-derivations = true
'';
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 60d";
};
};
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = [
"electron-27.3.11"
"nodejs-16.20.0"
];
};
overlays = [
rs-programs
];
};
}