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

18 lines
337 B
Nix
Raw Normal View History

{
# 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
2023-06-19 12:52:25 +00:00
# nixpkgs.config.permittedInsecurePackages = [
# "electron-21.4.0"
# ];
}