···3434- [ ] Disk configuration (disko)
3535- [ ] Encrypted disks (?)
3636- [ ] Home management (hjem)
3737-- [ ] Automatic updates
3737+- [-] Automatic updates (*cannot be entirely done, since tangled does not support pipeline based on time.*)
38383939## Installation
4040
+11
modules/features/auto-upgrade.nix
···11+{
22+ flake.nixosModules.auto-upgrade = { ... }: {
33+ system.autoUpgrade = {
44+ enable = true;
55+ upgrade = false; # Take the lockfile as it is
66+ flake = "git+https://tangled.org/cosmeak.dev/asgard";
77+ flags = [ "--no-update-lock-file" ];
88+ runGarbageCollection = false; # This will be do with the garbage-collection feature
99+ }
1010+ };
1111+}