Compare commits

...

2 commits

Author SHA1 Message Date
df4ce5afb2 poseidon: enable mosh 2021-03-16 15:23:17 +01:00
968c334c1b borg: prune files when backing up 2021-03-15 23:52:07 +01:00
2 changed files with 13 additions and 5 deletions

View file

@ -61,11 +61,14 @@ in
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
programs.fish.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "curses";
programs = {
fish.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "curses";
};
mosh.enable = true;
};
# List services that you want to enable:

View file

@ -54,6 +54,11 @@ in {
environment.BORG_RSH = "ssh -i /root/borgbackup/ssh_key";
compression = "auto,lzma";
startAt = "daily";
prune.keep = {
daily = 7;
weekly = 4;
monthly = 6;
};
};
};
}