mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
23 lines
500 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|