nixos-config/modules/nixos.nix
2025-01-07 14:18:17 +03:00

21 lines
418 B
Nix

{
# Auto system update
system.autoUpgrade = {
enable = true;
};
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
# Automatic Garbage Collection
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 7d";
};
# TODO : find what is installing this, probably obsidian?
nixpkgs.config.permittedInsecurePackages = [ "electron-25.9.0" ];
}