summaryrefslogtreecommitdiffstats
path: root/obsidian.nix
diff options
context:
space:
mode:
authorAndrew <admonty1@protonmail.com>2025-08-23 11:15:26 -0400
committerAndrew <admonty1@protonmail.com>2025-08-23 11:15:26 -0400
commit5121ffd2e96387b5fae28ca0206385d3d3506c56 (patch)
treec2b05ff288d77953a05f4e137afbd9de9847df25 /obsidian.nix
parentzsh and oh-my-zsh configuration added (diff)
downloadnixos-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.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;
- };
};
-
};
};
+
}