Add container updater
This commit is contained in:
parent
093c035fb2
commit
520cfad72d
3 changed files with 271 additions and 0 deletions
|
|
@ -10,6 +10,7 @@
|
|||
../../../modules/samba.nix
|
||||
../../../modules/borg-client.nix
|
||||
../../../modules/webdav.nix
|
||||
../../../modules/container-updater.nix
|
||||
];
|
||||
|
||||
# GRUB bootloader with ZFS support
|
||||
|
|
@ -123,6 +124,16 @@
|
|||
# Enable sudo for wheel group
|
||||
security.sudo.wheelNeedsPassword = false;
|
||||
|
||||
# Container auto-updater configuration
|
||||
services.containerUpdater = {
|
||||
enable = true;
|
||||
schedule = "*-*-* 03:00:00"; # Daily at 3 AM
|
||||
excludeContainers = []; # Update all containers
|
||||
enableNotifications = true;
|
||||
gotifyUrl = "https://notify.yanlincs.com";
|
||||
gotifyToken = "Ac9qKFH5cA.7Yly"; # Same token as borg backups
|
||||
};
|
||||
|
||||
# List packages installed in system profile
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue