2023-04-18 14:48:52 +03:00
|
|
|
{
|
|
|
|
# Auto system update
|
|
|
|
system.autoUpgrade = {
|
|
|
|
enable = true;
|
|
|
|
};
|
2023-11-03 11:09:19 +03:00
|
|
|
|
2023-04-18 14:48:52 +03:00
|
|
|
# Automatic Garbage Collection
|
|
|
|
nix.gc = {
|
|
|
|
automatic = true;
|
|
|
|
dates = "daily";
|
|
|
|
options = "--delete-older-than 7d";
|
|
|
|
};
|
|
|
|
|
2023-11-03 11:09:19 +03:00
|
|
|
# TODO : find what is installing this, probably obsidian?
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
2023-12-20 22:28:06 +03:00
|
|
|
"electron-25.9.0"
|
2023-11-03 11:09:19 +03:00
|
|
|
];
|
2023-12-20 22:28:06 +03:00
|
|
|
}
|