15 lines
318 B
Nix
15 lines
318 B
Nix
{ config, pkgs, lib, ... }: {
|
|
imports = [ ./common.nix ];
|
|
|
|
programs = {
|
|
bash = {
|
|
enable = true;
|
|
enableVteIntegration = true;
|
|
initExtra = ''
|
|
source <(${lib.getExe config.programs.kitty.package} + complete setup bash)
|
|
'';
|
|
};
|
|
|
|
starship.enableBashIntegration = true;
|
|
};
|
|
}
|