This commit is contained in:
Barrett Ruth 2026-02-18 12:43:32 -05:00
parent 9c1fc433e4
commit 1100b92625
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
3 changed files with 29 additions and 7 deletions

View file

@ -84,7 +84,24 @@ in
shell = pkgs.bash;
};
programs.bash.enable = true;
programs.bash = {
enable = true;
shellAliases = {
ls = "eza";
l = "ls --color=auto --group-directories-first";
ll = "l -alF";
la = "ll -R";
g = "git";
nv = "nvim";
};
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.hyprland = {
enable = true;
portalPackage = pkgs.xdg-desktop-portal-hyprland;