diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-09-14 13:59:30 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-09-14 14:12:12 -0500 |
| commit | 5d0d346f838a7711fa79eb6edab828107b95a499 (patch) | |
| tree | 30c6788c306c4713732c0fc90af1ff958aedc9c8 /modules/terminal/nixos/programs/bash.nix | |
| parent | 97efef82069622c204bbb0bc5c9ffc92399f2c77 (diff) | |
remove obsolete programs cfg
Diffstat (limited to 'modules/terminal/nixos/programs/bash.nix')
| -rw-r--r-- | modules/terminal/nixos/programs/bash.nix | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/modules/terminal/nixos/programs/bash.nix b/modules/terminal/nixos/programs/bash.nix deleted file mode 100644 index ed2c226..0000000 --- a/modules/terminal/nixos/programs/bash.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ - pkgs, - config, - lib, - ... -}: let - cfg = config.collinux.terminal.shells.bash; -in - lib.mkIf cfg.enable { - hjem.users."${config.collinux.user.name}" = { - files = { - ".bashrc".text = '' - eval "$(direnv hook bash)" - - for file in ~/.config/bash/conf.d/*; do source "$file"; done - ''; - - packages = with pkgs; [ - fish - ripgrep - fd - moreutils - zip - unzip - btop - jq - direnv - pay-respects - ]; - }; - }; - } |
