From f0217c68f5d99efe0ca90dc2f7fb2db174e0d9ed Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Mon, 19 Feb 2024 15:05:24 +0800 Subject: [PATCH] feat: note-taking - joplin --- home/base/desktop/editors/note-taking.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 home/base/desktop/editors/note-taking.nix diff --git a/home/base/desktop/editors/note-taking.nix b/home/base/desktop/editors/note-taking.nix new file mode 100644 index 00000000..d070fdf2 --- /dev/null +++ b/home/base/desktop/editors/note-taking.nix @@ -0,0 +1,7 @@ +{pkgs, ...}: { + home.packages = with pkgs; [ + # https://joplinapp.org/help/ + joplin # joplin-cli + joplin-desktop + ]; +}