nixfiles/home/profiles/graphical/obsidian.nix
2025-07-26 13:48:37 -07:00

23 lines
500 B
Nix

_: {
programs.obsidian = {
enable = true;
vaults."Notes".enable = true;
defaultSettings = {
app = {
vimMode = true;
showUnsupportedFiles = true;
showLineNumber = true;
livePreview = false;
readableLineLength = true;
};
appearance = {
monospaceFontFamily = "Iosevka,Consolas";
textFontFamily = "Ubuntu Sans";
interfaceFontFamily = "Monaspace Krypton";
baseFontSize = 16;
};
};
};
}