All checks were successful
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 14s
Check Nix formatting / Perform Nix format checks (pull_request) Successful in 6m58s
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (pull_request) Successful in 14m29s
Check Nix flake / Build nix outputs (ubuntu-latest) (pull_request) Successful in 19m14s
20 lines
478 B
Nix
20 lines
478 B
Nix
{ lib, ... }:
|
|
{
|
|
services.autopull = {
|
|
enable = lib.mkDefault true;
|
|
repo.dotfiles = {
|
|
enable = lib.mkDefault true;
|
|
ssh-key = lib.mkDefault "/root/.ssh/id_ed25519_giteadeploy";
|
|
path = lib.mkDefault /root/dotfiles;
|
|
};
|
|
};
|
|
|
|
system.autoUpgrade = {
|
|
enable = lib.mkDefault true;
|
|
flags = [ "--accept-flake-config" ];
|
|
randomizedDelaySec = "1h";
|
|
persistent = true;
|
|
flake = "git+ssh://nayeonie.com/ahuston-0/nix-dotfiles.git";
|
|
};
|
|
}
|