blob: 7cf885ded5a31f8873972571c70bccdef17024da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ lib, namespace, ... }:
with lib; with lib.${namespace}; {
imports = [
(mkSimpleApp "qbittorrent" {
persist = [
".config/qBittorrent"
".local/share/qBittorrent"
".cache/qBittorrent"
];
})
];
}
|