diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/common/home.nix | 1 | ||||
-rw-r--r-- | home/common/modules/shell.nix | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/home/common/home.nix b/home/common/home.nix index 13cbff5..08399b5 100644 --- a/home/common/home.nix +++ b/home/common/home.nix @@ -3,6 +3,7 @@ in { imports = [ ./modules/git.nix + ./modules/shell.nix ./modules/mimeapps.nix ]; 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"; + }; + }; +} |