.github
.vscode
docs
hydra
keys
lib
modules
autopull.nix
base.nix
boot.nix
docker.nix
endlessh.nix
fail2ban.nix
generators.nix
kub_net.nix
libs.nix
locale.nix
nix.nix
openssh.nix
pam-fingerprint-swap.nix
plocate.nix
programs.nix
update.nix
systems
users
utils
.envrc
.gitconfig
.gitignore
.sops.yaml
CONTRIBUTING.md
README.md
checks.nix
flake.lock
flake.nix
shell.nix
sops-mergetool.sh
statix.toml
treefmt.toml
20 lines
461 B
Nix
20 lines
461 B
Nix
{ lib, ... }:
|
|
{
|
|
services.autopull = {
|
|
enable = lib.mkDefault true;
|
|
repo.dotfiles = {
|
|
enable = lib.mkDefault true;
|
|
ssh-key = lib.mkDefault "/root/.ssh/id_ed25519_ghdeploy";
|
|
path = lib.mkDefault /root/dotfiles;
|
|
};
|
|
};
|
|
|
|
system.autoUpgrade = {
|
|
enable = lib.mkDefault true;
|
|
flags = [ "--accept-flake-config" ];
|
|
randomizedDelaySec = "1h";
|
|
persistent = true;
|
|
flake = "github:RAD-Development/nix-dotfiles";
|
|
};
|
|
}
|