aboutsummaryrefslogtreecommitdiff
path: root/snowfall/modules/home
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2025-02-08 16:48:53 -0800
committerCaroline Larimore <caroline@larimo.re>2025-04-14 18:58:51 -0700
commitbaf557cd940f23bfba6fcdd2c02c6a9215764d43 (patch)
treef29e183343fba00c5f1852c45a681bc0d5757177 /snowfall/modules/home
parent98c216f397f9964cc87991c47ed9ad79b75c9c5f (diff)
migration: qbittorrent
Diffstat (limited to 'snowfall/modules/home')
-rw-r--r--snowfall/modules/home/apps/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/snowfall/modules/home/apps/default.nix b/snowfall/modules/home/apps/default.nix
new file mode 100644
index 0000000..7cf885d
--- /dev/null
+++ b/snowfall/modules/home/apps/default.nix
@@ -0,0 +1,13 @@
+{ lib, namespace, ... }:
+
+with lib; with lib.${namespace}; {
+ imports = [
+ (mkSimpleApp "qbittorrent" {
+ persist = [
+ ".config/qBittorrent"
+ ".local/share/qBittorrent"
+ ".cache/qBittorrent"
+ ];
+ })
+ ];
+}