diff --git a/activation-manuelle/auto-upgrade.nix b/activation-manuelle/auto-upgrade.nix new file mode 100644 index 0000000..0c1c58c --- /dev/null +++ b/activation-manuelle/auto-upgrade.nix @@ -0,0 +1,7 @@ +{ config, pkgs, ... }: + +{ + # Automatic update & automatic clean + system.autoUpgrade.enable = true; + nix.gc.automatic = true; +} diff --git a/base.nix b/base.nix index b151a70..50ce630 100644 --- a/base.nix +++ b/base.nix @@ -2,8 +2,11 @@ { imports = [ - ./tools.nix + #./activation-manuelle/auto-upgrade.nix + #./activation-manuelle/locate.nix + #./activation-manuelle/swap.nix ./localisation.nix ./networking.nix + ./tools.nix ]; }