diff options
| author | Caroline Larimore <caroline@larimo.re> | 2026-04-03 10:59:01 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2026-04-03 10:59:01 -0700 |
| commit | d459998d5922345ab539ec2df65433eeff779125 (patch) | |
| tree | 848b22e5582ec4a2e8fba7953e1a9c416c591e1d | |
| parent | 549774e2b47a3ca80f769d0b8c870449f38eefa7 (diff) | |
| -rw-r--r-- | homes/x86_64-linux/c/default.nix | 1 | ||||
| -rw-r--r-- | modules/home/apps/default.nix | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/homes/x86_64-linux/c/default.nix b/homes/x86_64-linux/c/default.nix index 2115737..a0f1c10 100644 --- a/homes/x86_64-linux/c/default.nix +++ b/homes/x86_64-linux/c/default.nix @@ -20,6 +20,7 @@ in { apps = { discord.enable = true; + cinny.enable = true; gimp.enable = true; qbittorrent.enable = true; nicotine.enable = true; diff --git a/modules/home/apps/default.nix b/modules/home/apps/default.nix index f7f1633..cac3ea3 100644 --- a/modules/home/apps/default.nix +++ b/modules/home/apps/default.nix @@ -15,6 +15,10 @@ with lib; with lib.${namespace}; { }) (mkSimpleApp "irssi" { persist = [ ".irssi" ]; }) + (mkSimpleApp "cinny" { + packages = [ cinny-desktop ]; + persist = [ ".local/share/cinny" ]; + }) (mkSimpleApp "intellij" { packages = [ jetbrains.idea-oss ]; |