nixos-config/modules/nixos.nix
Florian Schmitt 8ba71f17ec november dump
2023-11-03 11:09:19 +03:00

18 lines
No EOL
349 B
Nix

{
# Auto system update
system.autoUpgrade = {
enable = true;
};
# Automatic Garbage Collection
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 7d";
};
# TODO : find what is installing this, probably obsidian?
nixpkgs.config.permittedInsecurePackages = [
"electron-24.8.6"
];
}