diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-06-17 22:27:40 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-06-17 22:27:40 +0530 |
commit | 0291edd8873549027648faef2579ea3f1ca8a07d (patch) | |
tree | c037ad62bcaf40545a1eaac7a2c28662e2b8ea0a /home/common/modules | |
parent | be3de7417ec2f11aabc080a7d69b93437bf96fb7 (diff) |
home/common/shell: init
Diffstat (limited to 'home/common/modules')
-rw-r--r-- | home/common/modules/shell.nix | 12 |
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"; + }; + }; +} |