Compare commits

...

3 commits

Author SHA1 Message Date
96dcd17947
feat(gorgon): enable ssh-agent
Some checks are pending
Continuous Integration / Checks (push) Waiting to run
2024-12-08 13:10:22 +01:00
776f7d2000
feat(laptop): remove ssh agent enable by default 2024-12-08 13:04:37 +01:00
4e44dc164a
fix: enable backup1 2024-12-08 13:03:45 +01:00
4 changed files with 4 additions and 3 deletions

View file

@ -43,6 +43,8 @@ in
repo = "u355513-sub1@u355513-sub1.your-storagebox.de:/home/backup";
};
programs.ssh.startAgent = true;
nix.extraOptions = ''
experimental-features = nix-command flakes
# Prevent garbage collection for nix shell and direnv

View file

@ -156,7 +156,7 @@ in
};
};
services.borgbackup.jobs.backup1 = mkIf cfg.bs.enable {
services.borgbackup.jobs.backup1 = mkIf cfg.backup1.enable {
paths = "/";
exclude = backupExcludes;
repo = "borg@backup1.dadada.li:/mnt/storage/backups/${config.networking.hostName}";

View file

@ -4,7 +4,7 @@ let
in
{
dadada.backupClient.bs = {
enable = lib.mkDefault true;
enable = lib.mkDefault false;
passphrasePath = config.age.secrets."${config.networking.hostName}-backup-passphrase".path;
sshIdentityFile = config.age.secrets."${config.networking.hostName}-backup-ssh-key".path;
};

View file

@ -16,7 +16,6 @@ with lib; {
networking.domain = mkDefault "dadada.li";
services.fwupd.enable = mkDefault true;
programs.ssh.startAgent = true;
programs.ssh.enableAskPassword = true;
programs.nix-ld.enable = true;