aboutsummaryrefslogtreecommitdiff
path: root/snowfall/modules/home/apps/default.nix
blob: 188dfb32770b174ad5793cc4fc6fd525530651e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, namespace, ... }:

with lib; with lib.${namespace}; {
  imports = [
    (mkSimpleApp "gimp" {})
    (mkSimpleApp "qbittorrent" {
      persist = [
        ".config/qBittorrent"
        ".local/share/qBittorrent"
        ".cache/qBittorrent"
      ];
    })
  ];
}