Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

wip: automatic updates

cosmeak e7bf8b77 8926df81

+12 -1
+1 -1
README.md
··· 34 34 - [ ] Disk configuration (disko) 35 35 - [ ] Encrypted disks (?) 36 36 - [ ] Home management (hjem) 37 - - [ ] Automatic updates 37 + - [-] Automatic updates (*cannot be entirely done, since tangled does not support pipeline based on time.*) 38 38 39 39 ## Installation 40 40
+11
modules/features/auto-upgrade.nix
··· 1 + { 2 + flake.nixosModules.auto-upgrade = { ... }: { 3 + system.autoUpgrade = { 4 + enable = true; 5 + upgrade = false; # Take the lockfile as it is 6 + flake = "git+https://tangled.org/cosmeak.dev/asgard"; 7 + flags = [ "--no-update-lock-file" ]; 8 + runGarbageCollection = false; # This will be do with the garbage-collection feature 9 + } 10 + }; 11 + }