From 5d0d346f838a7711fa79eb6edab828107b95a499 Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Sun, 14 Sep 2025 13:59:30 -0500 Subject: remove obsolete programs cfg --- modules/terminal/nixos/programs/bash.nix | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 modules/terminal/nixos/programs/bash.nix (limited to 'modules/terminal/nixos/programs/bash.nix') 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 - ]; - }; - }; - } -- cgit v1.3.1