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

21 lines
411 B
Nix
Raw Normal View History

{
# Auto system update
system.autoUpgrade = {
enable = true;
};
2023-11-03 08:09:19 +00:00
2024-05-13 12:16:15 +00:00
nix.settings.experimental-features = [ "nix-command" ];
# 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?
nixpkgs.config.permittedInsecurePackages = [
"electron-25.9.0"
2023-11-03 08:09:19 +00:00
];
}