From 0291edd8873549027648faef2579ea3f1ca8a07d Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Mon, 17 Jun 2024 22:27:40 +0530 Subject: home/common/shell: init --- home/common/modules/shell.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 home/common/modules/shell.nix (limited to 'home/common/modules') 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"; + }; + }; +} -- cgit v1.2.3