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

@ -192,7 +192,7 @@ in
}
'';
programs.bash = {
programs.bash = lib.mkIf (!hostConfig.isNixOS) {
enable = true;
shellAliases = {
ls = "eza";
@ -211,7 +211,7 @@ in
programs.starship = {
enable = true;
enableBashIntegration = true;
enableBashIntegration = false;
settings = {
format = lib.concatStrings [
"$directory"
@ -257,7 +257,7 @@ in
programs.fzf = {
enable = true;
enableBashIntegration = true;
enableBashIntegration = false;
defaultCommand = "rg --files --hidden";
defaultOptions = [
"--bind=ctrl-a:select-all"
@ -273,18 +273,18 @@ in
programs.eza = {
enable = true;
enableBashIntegration = true;
enableBashIntegration = false;
git = true;
};
programs.zoxide = {
enable = true;
enableBashIntegration = true;
enableBashIntegration = false;
};
programs.direnv = {
enable = true;
enableBashIntegration = true;
enableBashIntegration = false;
nix-direnv.enable = true;
config.global = {
hide_env_diff = true;