fix(bash): shell integration

This commit is contained in:
Barrett Ruth 2026-02-18 12:39:49 -05:00
parent c3e5986aeb
commit 9c1fc433e4
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
4 changed files with 24 additions and 33 deletions

View file

@ -84,16 +84,7 @@ in
shell = pkgs.bash;
};
programs.bash = {
enable = true;
shellInit = ''
export INPUTRC="$HOME/.config/nix/config/bash/inputrc"
export THEME="midnight"
'';
interactiveShellInit = ''
[ -f "$HOME/.config/nix/config/bash/bashrc" ] && . "$HOME/.config/nix/config/bash/bashrc"
'';
};
programs.bash.enable = true;
programs.hyprland = {
enable = true;
portalPackage = pkgs.xdg-desktop-portal-hyprland;