From 09d6dc9b0aa2e22b38cb3db77d7e1778afd00cd7 Mon Sep 17 00:00:00 2001 From: twoneis Date: Mon, 13 Nov 2023 22:43:32 +0100 Subject: [PATCH] added rnote --- modules/home/default.nix | 1 + modules/home/editor/config.toml | 22 ---------------------- modules/home/notes/default.nix | 5 +++++ 3 files changed, 6 insertions(+), 22 deletions(-) delete mode 100644 modules/home/editor/config.toml create mode 100644 modules/home/notes/default.nix diff --git a/modules/home/default.nix b/modules/home/default.nix index 4caf7c0..84abbfa 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -10,6 +10,7 @@ ./gdb ./git ./media + ./notes ./terminal ./utils ]; diff --git a/modules/home/editor/config.toml b/modules/home/editor/config.toml deleted file mode 100644 index 5745e70..0000000 --- a/modules/home/editor/config.toml +++ /dev/null @@ -1,22 +0,0 @@ -theme = "rosepine" -[editor] -auto-format = true -cursorline = true -line-number = "relative" - -[editor.cursor-shape] -insert = "bar" -normal = "block" -select = "underline" - -[editor.soft-wrap] -enable = true - -[editor.whitespace] -render = "all" - -[keys.normal] -h = "move_char_left" -n = "move_line_down" -s = "move_char_right" -t = "move_line_up" diff --git a/modules/home/notes/default.nix b/modules/home/notes/default.nix new file mode 100644 index 0000000..786833e --- /dev/null +++ b/modules/home/notes/default.nix @@ -0,0 +1,5 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + rnote + ]; +}