diff options
| author | Andrew <admonty1@protonmail.com> | 2025-08-23 11:15:26 -0400 |
|---|---|---|
| committer | Andrew <admonty1@protonmail.com> | 2025-08-23 11:15:26 -0400 |
| commit | 5121ffd2e96387b5fae28ca0206385d3d3506c56 (patch) | |
| tree | c2b05ff288d77953a05f4e137afbd9de9847df25 /obsidian.nix | |
| parent | zsh and oh-my-zsh configuration added (diff) | |
| download | nixos-5121ffd2e96387b5fae28ca0206385d3d3506c56.tar.gz nixos-5121ffd2e96387b5fae28ca0206385d3d3506c56.tar.bz2 nixos-5121ffd2e96387b5fae28ca0206385d3d3506c56.zip | |
obsidian config with hacky zoom fix
Diffstat (limited to 'obsidian.nix')
| -rw-r--r-- | obsidian.nix | 19 |
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; - }; }; - }; }; + } |
