diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-08 17:02:27 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:51 -0700 |
| commit | c2c8b60352d562fd1229dd699525f03bd5ece213 (patch) | |
| tree | 6dc46977e3a3d954344d1b58d0eccde9ad1e5759 /snowfall/modules/home/apps | |
| parent | 88e4d5741335ebb706d1a0cc6b65f3224a54b06a (diff) | |
migration: nicotine
Diffstat (limited to 'snowfall/modules/home/apps')
| -rw-r--r-- | snowfall/modules/home/apps/default.nix | 11 |
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" + ]; + }) ]; } |