Miscellanious stuff

This commit is contained in:
Tomas Rivera
2026-03-30 16:39:48 +02:00
parent 16c76a53e4
commit 9cac666fdd
11 changed files with 1246 additions and 17 deletions
+14 -12
View File
@@ -1,20 +1,22 @@
{ config, pkgs, ... }:
{
config,
pkgs,
...
}: {
programs.obsidian = {
enable = true;
vaults.miscellanious = {
enable = true;
target = "/Documents/Notes/miscellanious"; # target is relative to ~ #not directly to kdrive. It causes problems
};
vaults.work = {
enable = true;
target = "/Documents/Notes/work";
vaults = {
miscellanious = { enable = true; target = "/Documents/Notes/miscellanious"; };
work = { enable = true; target = "/Documents/Notes/work"; };
};
defaultSettings = {
appearance.theme = "gruvbox";
extraFiles = {
".obsidian/themes/gruvbox/manifest.json" = ../../other/obsidian-theme/manifest.json;
".obsidian/themes/gruvbox/obsidian.css" = ../../other/obsidian-theme/obsidian.css;
".obsidian/themes/gruvbox/theme.css" = ../../other/obsidian-theme/theme.css;
};
};
};
}