mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
31 lines
668 B
Nix
31 lines
668 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.obsidian = {
|
|
enable = true;
|
|
|
|
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;
|
|
};
|
|
};
|
|
};
|
|
}
|