aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/bash.nix
diff options
context:
space:
mode:
authorLeander Scherer <leander@schererleander.de>2026-06-14 23:53:22 +0200
committerLeander Scherer <leander@schererleander.de>2026-06-14 23:55:08 +0200
commitd461eff888927a190eeedee5df6716f68e42c9c2 (patch)
tree264fc3ef6ccb726447081b0f6496299af039ceb5 /modules/programs/bash.nix
parent9c59ec1d084282c5590a183b50e3dbfa0a3b3b83 (diff)
chore(programs): update and remove unused programs
Diffstat (limited to 'modules/programs/bash.nix')
-rw-r--r--modules/programs/bash.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/modules/programs/bash.nix b/modules/programs/bash.nix
deleted file mode 100644
index 6fd488d..0000000
--- a/modules/programs/bash.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- flake.modules.homeManager.bash =
- {
- pkgs,
- ...
- }:
- {
- home.packages = with pkgs; [
- zoxide
- ];
-
- programs.bash = {
- enable = true;
- enableCompletion = true;
- initExtra = ''
- # view man pages with nvim
- export MANPAGER="nvim +Man!"
-
- # vim keybindings
- set -o vi
-
- # zoxide smarter cd command
- eval "$(zoxide init bash)"
- '';
- shellAliases = {
- ls = "ls --color=auto";
- };
- };
- };
-}