nix-dotfiles/modules/update.nix

16 lines
388 B
Nix
Raw Normal View History

2024-04-19 17:59:10 -04:00
{ lib, ... }:
{ services.autopull = {
enable = lib.mkDefault true;
ssh-key = lib.mkDefau "/root/.ssh/id_ed25519_ghdeploy";
path = lib.mkDefau /root/dotfiles;
};
system.autoUpgrade = {
enable = lib.mkDefault true;
flags = [ "--accept-flake-config" ];
randomizedDelaySec = "1h";
persistent = true;
flake = "github:RAD-Development/nix-dotfiles";
};
}