mrflos-nixos-config-fork/modules/nixos.nix

19 lines
399 B
Nix
Raw Normal View History

{
# Auto system update
system.autoUpgrade = {
2024-09-05 12:39:17 +00:00
enable = true;
};
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
# 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" ];
}