summaryrefslogtreecommitdiff
path: root/nixos/modules/features/editors
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/features/editors')
-rw-r--r--nixos/modules/features/editors/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/nixos/modules/features/editors/default.nix b/nixos/modules/features/editors/default.nix
new file mode 100644
index 0000000..1570aa3
--- /dev/null
+++ b/nixos/modules/features/editors/default.nix
@@ -0,0 +1,10 @@
+{ pkgs, ... }:
+
+{
+ environment.systemPackages = with pkgs; [
+ micro
+ neovim
+ (emacs.override { withNativeCompilation = true; })
+ pkgs.vimPlugins.im-select-nvim
+ ];
+} \ No newline at end of file