mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
21 lines
383 B
Nix
21 lines
383 B
Nix
{
|
|
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";
|
|
};
|
|
defaultSettings = {
|
|
|
|
};
|
|
};
|
|
}
|