nixos-config/modules/nixos.nix
2023-12-20 22:28:06 +03:00

18 lines
350 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-25.9.0"
];
}