Implement reliable exFAT manual backup workflow

This commit is contained in:
copilot-swe-agent[bot]
2026-07-17 16:56:08 +00:00
committed by GitHub
parent 0ec8203557
commit 9f3d3e7670
5 changed files with 676 additions and 133 deletions
+10 -1
View File
@@ -388,7 +388,16 @@ in
pkgs.nftables
pkgs.iptables
pkgs.hostname
] ++ lib.optional cfg.services.bitcoin config.services.bitcoind.package;
pkgs.coreutils
pkgs.findutils
pkgs.gnugrep
pkgs.gnutar
pkgs.util-linux
]
++ lib.optional cfg.services.bitcoin config.services.bitcoind.package
++ lib.optionals cfg.services.bitcoin [ pkgs.lnd ]
++ lib.optionals (cfg.services.nextcloud || cfg.services.synapse) [ config.services.postgresql.package ]
++ lib.optionals config.services.mysql.enable [ config.services.mysql.package ];
};
systemd.services.sovran-hub-update = {