nixos-config/modules/home/bash.nix
2025-07-25 10:55:20 -04:00

15 lines
No EOL
312 B
Nix
Executable file

{ config, ... }:
{
programs = {
bash = {
enable = true;
shellAliases = {
switch = "sudo nixos-rebuild switch";
boot = "sudo nixos-rebuild boot";
};
};
kitty.shellIntegration.enableBashIntegration = if config.programs.kitty.enable then true else false;
};
}