diff --git a/hosts/poseidon/default.nix b/hosts/poseidon/default.nix index 7077116..1ff88f2 100644 --- a/hosts/poseidon/default.nix +++ b/hosts/poseidon/default.nix @@ -61,14 +61,11 @@ in # Some programs need SUID wrappers, can be configured further or are # started in user sessions. - programs = { - fish.enable = true; - gnupg.agent = { - enable = true; - enableSSHSupport = true; - pinentryFlavor = "curses"; - }; - mosh.enable = true; + programs.fish.enable = true; + programs.gnupg.agent = { + enable = true; + enableSSHSupport = true; + pinentryFlavor = "curses"; }; # List services that you want to enable: diff --git a/services/borg-backup.nix b/services/borg-backup.nix index 63aa427..387a304 100644 --- a/services/borg-backup.nix +++ b/services/borg-backup.nix @@ -54,11 +54,6 @@ in { environment.BORG_RSH = "ssh -i /root/borgbackup/ssh_key"; compression = "auto,lzma"; startAt = "daily"; - prune.keep = { - daily = 7; - weekly = 4; - monthly = 6; - }; }; }; }