From 7e7c8947fc2ff5598124c4a4c18bd28432fa017e Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Mon, 8 Sep 2025 14:01:35 -0500 Subject: rework most of config; probably broke jupiter again; working to add ganymede (non-nixos) to this repo --- modules/terminal/system/programs/bash.nix | 32 ------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 modules/terminal/system/programs/bash.nix (limited to 'modules/terminal/system/programs/bash.nix') diff --git a/modules/terminal/system/programs/bash.nix b/modules/terminal/system/programs/bash.nix deleted file mode 100644 index ed2c226..0000000 --- a/modules/terminal/system/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