summaryrefslogtreecommitdiff
path: root/nixos/modules/misc/notes.nix
diff options
context:
space:
mode:
authorcaley <195605706+cqley@users.noreply.github.com>2026-08-07 01:55:33 +0200
committerGitHub <noreply@github.com>2026-08-07 01:55:33 +0200
commitc5270e25dbb4fe71f81aa33914da43db25493dd8 (patch)
treeb89e49430f519a2ef81cd78afb3adb13dd4ad5c0 /nixos/modules/misc/notes.nix
parentf4d1ad2c1e38ef06c9334ae5659081d2e47902d0 (diff)
meow meow meow
Diffstat (limited to 'nixos/modules/misc/notes.nix')
-rw-r--r--nixos/modules/misc/notes.nix55
1 files changed, 55 insertions, 0 deletions
diff --git a/nixos/modules/misc/notes.nix b/nixos/modules/misc/notes.nix
new file mode 100644
index 0000000..0ed6cc6
--- /dev/null
+++ b/nixos/modules/misc/notes.nix
@@ -0,0 +1,55 @@
+{ config, pkgs, ... }:
+
+{
+ home.packages = [ pkgs.obsidian ];
+
+ home.file = {
+ "documents/obsidian/.obsidian/app.json".text = builtins.toJSON {
+ readableLineLength = true;
+ foldHeading = true;
+ showLineNumber = true;
+ spellcheck = false;
+ vimMode = false;
+ newFileLocation = "current";
+ promptDelete = false;
+ };
+ "documents/obsidian/.obsidian/appearance.json".text = builtins.toJSON {
+ accentColor = "#ffa8db";
+ cssTheme = "";
+ theme = "obsidian";
+ };
+ "documents/obsidian/.obsidian/core-plugins.json".text = builtins.toJSON {
+ "file-explorer" = true;
+ "global-search" = true;
+ "switcher" = false;
+ "graph" = true;
+ "backlink" = false;
+ "canvas" = false;
+ "outgoing-link" = true;
+ "tag-pane" = true;
+ "footnotes" = false;
+ "properties" = false;
+ "page-preview" = true;
+ "daily-notes" = true;
+ "templates" = false;
+ "note-composer" = false;
+ "command-palette" = false;
+ "slash-command" = false;
+ "editor-status" = true;
+ "bookmarks" = false;
+ "markdown-importer" = false;
+ "zk-prefixer" = false;
+ "random-note" = false;
+ "outline" = true;
+ "word-count" = true;
+ "slides" = false;
+ "audio-recorder" = false;
+ "workspaces" = false;
+ "file-recovery" = true;
+ "publish" = false;
+ "sync" = false;
+ "bases" = false;
+ "webviewer" = false;
+ };
+ };
+}