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 + ]; +}