From a4da3bb6873ecdd03b756ef9ab5dd35438038770 Mon Sep 17 00:00:00 2001 From: twoneis Date: Thu, 15 Feb 2024 01:10:46 +0100 Subject: [PATCH] added notetaking tools --- modules/system/home/default.nix | 1 + modules/system/home/notes/default.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 modules/system/home/notes/default.nix diff --git a/modules/system/home/default.nix b/modules/system/home/default.nix index a9101a4..0a83f28 100644 --- a/modules/system/home/default.nix +++ b/modules/system/home/default.nix @@ -11,6 +11,7 @@ ./gdb ./git ./media + ./notes ./shell ./terminal ./themes diff --git a/modules/system/home/notes/default.nix b/modules/system/home/notes/default.nix new file mode 100644 index 0000000..21b6e64 --- /dev/null +++ b/modules/system/home/notes/default.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + obsidian + ]; + + programs.pandoc = { + enable = true; + }; +}