summaryrefslogtreecommitdiffstats
path: root/obsidian.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--obsidian.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/obsidian.nix b/obsidian.nix
new file mode 100644
index 0000000..4c168d7
--- /dev/null
+++ b/obsidian.nix
@@ -0,0 +1,19 @@
+{ config, pkgs, ... }:
+
+{
+ programs.obsidian = {
+ enable = true;
+ vaults."Vault" = {
+ enable = true;
+ settings = {
+ app = {
+ showLineNumbers = true;
+ };
+ appearance = {
+ zoomLevel = 1.50;
+ };
+ };
+
+ };
+ };
+}