aboutsummaryrefslogtreecommitdiff
path: root/snowfall/modules/home
diff options
context:
space:
mode:
Diffstat (limited to 'snowfall/modules/home')
-rw-r--r--snowfall/modules/home/apps/default.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/snowfall/modules/home/apps/default.nix b/snowfall/modules/home/apps/default.nix
index 188dfb3..c19f9b2 100644
--- a/snowfall/modules/home/apps/default.nix
+++ b/snowfall/modules/home/apps/default.nix
@@ -1,7 +1,7 @@
-{ lib, namespace, ... }:
+{ lib, pkgs, namespace, ... }:
with lib; with lib.${namespace}; {
- imports = [
+ imports = with pkgs; [
(mkSimpleApp "gimp" {})
(mkSimpleApp "qbittorrent" {
persist = [
@@ -10,5 +10,12 @@ with lib; with lib.${namespace}; {
".cache/qBittorrent"
];
})
+ (mkSimpleApp "nicotine" {
+ packages = [ nicotine-plus ];
+ persist = [
+ ".config/nicotine"
+ ".local/share/nicotine"
+ ];
+ })
];
}