summaryrefslogtreecommitdiff
path: root/home/common/modules
diff options
context:
space:
mode:
Diffstat (limited to 'home/common/modules')
-rw-r--r--home/common/modules/shell.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/home/common/modules/shell.nix b/home/common/modules/shell.nix
new file mode 100644
index 0000000..c1b31fd
--- /dev/null
+++ b/home/common/modules/shell.nix
@@ -0,0 +1,12 @@
+{ pkgs, ... }: {
+ programs.bash.enable = true;
+
+ home = {
+ packages = with pkgs; [ neovim ];
+
+ sessionVariables = {
+ EDITOR = "nvim";
+ VISUAL = "nvim";
+ };
+ };
+}