diff options
| author | caley <195605706+cqley@users.noreply.github.com> | 2026-07-30 01:36:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-30 01:36:18 +0200 |
| commit | 56d0768c371b2b2bd543670b26f9d987b59e50b6 (patch) | |
| tree | f7d6b51881fe4d1ad213cf5c351f4ed432668f2c | |
| parent | 824cc9a2b8c52563d7e8325f123722f05a9ca836 (diff) | |
Update notes.nix
| -rw-r--r-- | nixos/modules/notes.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/notes.nix b/nixos/modules/notes.nix index 01356d6..0ed6cc6 100644 --- a/nixos/modules/notes.nix +++ b/nixos/modules/notes.nix @@ -4,7 +4,7 @@ home.packages = [ pkgs.obsidian ]; home.file = { - ".documents/obsidian/.obsidian/app.json".text = builtins.toJSON { + "documents/obsidian/.obsidian/app.json".text = builtins.toJSON { readableLineLength = true; foldHeading = true; showLineNumber = true; @@ -13,12 +13,12 @@ newFileLocation = "current"; promptDelete = false; }; - ".documents/obsidian/.obsidian/appearance.json".text = builtins.toJSON { + "documents/obsidian/.obsidian/appearance.json".text = builtins.toJSON { accentColor = "#ffa8db"; cssTheme = ""; theme = "obsidian"; }; - ".documents/obsidian/.obsidian/core-plugins.json".text = builtins.toJSON { + "documents/obsidian/.obsidian/core-plugins.json".text = builtins.toJSON { "file-explorer" = true; "global-search" = true; "switcher" = false; |
