diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-08 16:48:53 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:51 -0700 |
| commit | baf557cd940f23bfba6fcdd2c02c6a9215764d43 (patch) | |
| tree | f29e183343fba00c5f1852c45a681bc0d5757177 | |
| parent | 98c216f397f9964cc87991c47ed9ad79b75c9c5f (diff) | |
migration: qbittorrent
| -rw-r--r-- | hosts/c-pc/home.nix | 5 | ||||
| -rw-r--r-- | snowfall/homes/x86_64-linux/c/default.nix | 2 | ||||
| -rw-r--r-- | snowfall/modules/home/apps/default.nix | 13 |
3 files changed, 15 insertions, 5 deletions
diff --git a/hosts/c-pc/home.nix b/hosts/c-pc/home.nix index 0bbe373..4f1f598 100644 --- a/hosts/c-pc/home.nix +++ b/hosts/c-pc/home.nix @@ -25,10 +25,6 @@ ".config/Obsidian" - ".config/qBittorrent" - ".local/share/qBittorrent" - ".cache/qBittorrent" - ".config/jellyfin" ".local/share/jellyfin" ".cache/jellyfin" @@ -58,7 +54,6 @@ irssi - qbittorrent nicotine-plus jellyfin-media-player mkvtoolnix diff --git a/snowfall/homes/x86_64-linux/c/default.nix b/snowfall/homes/x86_64-linux/c/default.nix index da64583..220f4dc 100644 --- a/snowfall/homes/x86_64-linux/c/default.nix +++ b/snowfall/homes/x86_64-linux/c/default.nix @@ -14,6 +14,8 @@ with lib; with lib.${namespace}; { }; apps.discord.enable = true; + apps.qbittorrent.enable = true; + apps.prismlauncher.extra.rusherhack.enable = true; tools.git = { 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" + ]; + }) + ]; +} |