mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 10:35:13 -05:00
24 lines
395 B
Nix
24 lines
395 B
Nix
![]() |
{
|
||
|
nixpkgs = {
|
||
|
config = {
|
||
|
allowUnfree = true;
|
||
|
permittedInsecurePackages = [
|
||
|
"electron"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nix = {
|
||
|
extraOptions = ''
|
||
|
experimental-features = nix-command flakes
|
||
|
keep-outputs = true
|
||
|
keep-derivations = true
|
||
|
'';
|
||
|
gc = {
|
||
|
automatic = true;
|
||
|
dates = "weekly";
|
||
|
options = "--delete-older-than 10d";
|
||
|
};
|
||
|
};
|
||
|
}
|