summaryrefslogtreecommitdiffstats
path: root/obsidian.nix
blob: 4c168d76616b10dda5e1c6622ac832a6fc5fc7a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ config, pkgs, ... }:

{
  programs.obsidian = {
    enable = true;
    vaults."Vault" = {
      enable = true;
      settings = {
        app = {
          showLineNumbers = true;
        };
        appearance = {
          zoomLevel = 1.50;
        };
      };

    };
  };
}