From 325e2720ec3d1b8fb775fbfe5fe3637672220d5f Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Tue, 7 Apr 2026 14:31:09 -0400 Subject: [PATCH] borg: remove signal and zen backups (handled by other means --- home-manager/progs/borg.nix | 13 ------------- system/common.nix | 4 +++- 2 files changed, 3 insertions(+), 14 deletions(-) diff --git a/home-manager/progs/borg.nix b/home-manager/progs/borg.nix index 83cc8b3..ad336fa 100644 --- a/home-manager/progs/borg.nix +++ b/home-manager/progs/borg.nix @@ -8,7 +8,6 @@ location = { sourceDirectories = ( map (f: "${homeDirectory}/${f}") [ - ".zen" ".local/share/fish" ".ssh" "Documents" @@ -16,18 +15,6 @@ "Pictures" "school" ] - ++ (map (f: ".config/Signal/${f}") [ - "stickers.noindex" - "attachments.noindex" - "downloads.noindex" - "drafts.noindex" - "sql" - "IndexedDB" - "Local Storage" - "SharedStorage" - "config.json" - "Preferences" - ]) ); excludeHomeManagerSymlinks = true; diff --git a/system/common.nix b/system/common.nix index 4e7f839..6fb0436 100644 --- a/system/common.nix +++ b/system/common.nix @@ -87,7 +87,9 @@ # Use muffin server as a binary cache substituters = [ "https://nix-cache.sigkill.computer" ]; - trusted-public-keys = [ "nix-cache.sigkill.computer-1:ONtQC9gUjL+2yNgMWB68NudPySXhyzJ7I3ra56/NPgk=" ]; + trusted-public-keys = [ + "nix-cache.sigkill.computer-1:ONtQC9gUjL+2yNgMWB68NudPySXhyzJ7I3ra56/NPgk=" + ]; netrc-file = "${./secrets/nix-cache-netrc}"; }; };