summaryrefslogtreecommitdiffstats
path: root/obsidian.nix
diff options
context:
space:
mode:
Diffstat (limited to 'obsidian.nix')
-rw-r--r--obsidian.nix19
1 files changed, 11 insertions, 8 deletions
diff --git a/obsidian.nix b/obsidian.nix
index 4c168d7..1c55a90 100644
--- a/obsidian.nix
+++ b/obsidian.nix
@@ -1,19 +1,22 @@
{ config, pkgs, ... }:
-
{
programs.obsidian = {
enable = true;
+ defaultSettings = {
+ app = {
+ showLineNumber = true;
+ vimMode = true;
+ };
+ cssSnippets = [
+ ./zoom.css
+ ];
+
+ };
vaults."Vault" = {
enable = true;
settings = {
- app = {
- showLineNumbers = true;
- };
- appearance = {
- zoomLevel = 1.50;
- };
};
-
};
};
+
}