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