nixos-config/modules/home/bash.nix
2025-07-20 13:02:43 -04:00

15 lines
No EOL
312 B
Nix

{ 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;
};
}