12 lines
198 B
Nix
12 lines
198 B
Nix
{ config, pkgs, ... }: {
|
|
imports = [ ./common.nix ];
|
|
|
|
programs = {
|
|
bash = {
|
|
enable = true;
|
|
enableVteIntegration = true;
|
|
};
|
|
|
|
starship.enableBashIntegration = true;
|
|
};
|
|
}
|