diff options
Diffstat (limited to 'snowfall/modules/home/apps/default.nix')
| -rw-r--r-- | snowfall/modules/home/apps/default.nix | 13 |
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" + ]; + }) + ]; +} |