This commit is contained in:
2025-12-08 17:18:58 +00:00
parent 68a10416e1
commit 570f84684d
4 changed files with 7 additions and 13 deletions

View File

@@ -14,6 +14,7 @@
./plugins/oil.nix ./plugins/oil.nix
./plugins/toggleterm.nix ./plugins/toggleterm.nix
./plugins/treesitter.nix ./plugins/treesitter.nix
./plugins/zk.nix
]; ];
programs.nixvim = { programs.nixvim = {

View File

@@ -1,7 +1,6 @@
{ {
programs.nixvim.plugins.zk = { programs.nixvim.plugins.zk = {
enable = true; enable = true;
settings = { settings = {};
};
}; };
} }

View File

@@ -1,16 +1,9 @@
{ {
programs.zk = { programs.zk = {
enable = true; enable = true;
settings = { settings = {};
notebook = {
path = "~/Projects/Personal/Zettelkasten";
};
note = {
language = "en";
};
extra = {
author = "Christoph Schmatzler";
};
}; };
home.sessionVariables = {
ZK_NOTEBOOK_DIR = "$HOME/Projects/Personal/Zettelkasten";
}; };
} }

View File

@@ -39,5 +39,6 @@ with pkgs; [
tree-sitter tree-sitter
unzip unzip
vivid vivid
ov
zip zip
] ]