obsidian.nix
1 { 2 programs.obsidian = { 3 enable = false; 4 vaults = { }; 5 6 defaultSettings = { 7 app = { }; 8 appearance = { }; 9 hotkeys = { }; 10 themes = [ ]; 11 extraFiles = { }; 12 cssSnippets = [ ]; 13 communityPlugins = [ ]; 14 15 corePlugins = [ 16 "graph" 17 "canvas" 18 "slides" 19 "publish" 20 "outline" 21 "backlink" 22 "switcher" 23 "tag-pane" 24 "bookmarks" 25 "templates" 26 "word-count" 27 "properties" 28 "workspaces" 29 "random-note" 30 "daily-notes" 31 "page-preview" 32 "editor-status" 33 "file-explorer" 34 "file-recovery" 35 "global-search" 36 "slash-command" 37 "note-composer" 38 "outgoing-link" 39 "command-palette" 40 "markdown-importer" 41 ]; 42 }; 43 }; 44 }