added notetaking tools

This commit is contained in:
twoneis 2024-02-15 01:10:46 +01:00
parent 9804508d85
commit a4da3bb687
2 changed files with 10 additions and 0 deletions

View file

@ -11,6 +11,7 @@
./gdb ./gdb
./git ./git
./media ./media
./notes
./shell ./shell
./terminal ./terminal
./themes ./themes

View file

@ -0,0 +1,9 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
obsidian
];
programs.pandoc = {
enable = true;
};
}