From 6d94ab79f31092ecc7b1b00c6088d052aaecff74 Mon Sep 17 00:00:00 2001 From: caley <195605706+cqley@users.noreply.github.com> Date: Wed, 22 Jul 2026 01:18:45 +0200 Subject: Rename obsidian.nix to notes.nix --- nixos/mdls/notes.nix | 55 +++++++++++++++++++++++++++++++++++++++++++++++++ nixos/mdls/obsidian.nix | 55 ------------------------------------------------- 2 files changed, 55 insertions(+), 55 deletions(-) create mode 100644 nixos/mdls/notes.nix delete mode 100644 nixos/mdls/obsidian.nix (limited to 'nixos') diff --git a/nixos/mdls/notes.nix b/nixos/mdls/notes.nix new file mode 100644 index 0000000..01356d6 --- /dev/null +++ b/nixos/mdls/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; + }; + }; +} diff --git a/nixos/mdls/obsidian.nix b/nixos/mdls/obsidian.nix deleted file mode 100644 index 01356d6..0000000 --- a/nixos/mdls/obsidian.nix +++ /dev/null @@ -1,55 +0,0 @@ -{ 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; - }; - }; -} -- cgit v1.3.1