2023-05-17 17:10:18 +01:00
|
|
|
{...}: {
|
2023-07-16 17:35:36 +01:00
|
|
|
imports = [./default.nix];
|
2023-07-10 20:58:41 +01:00
|
|
|
programs = {
|
|
|
|
bash.enable = true;
|
|
|
|
readline = {
|
|
|
|
enable = true;
|
|
|
|
includeSystemConfig = true;
|
|
|
|
extraConfig = ''
|
|
|
|
set completion-ignore-case On
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
direnv.enableBashIntegration = true;
|
|
|
|
fzf.enableBashIntegration = true;
|
2023-07-16 17:35:36 +01:00
|
|
|
keychain.enableBashIntegration = true;
|
|
|
|
starship.enableBashIntegration = true;
|
2023-06-16 14:05:17 +01:00
|
|
|
};
|
2023-03-29 15:38:01 +01:00
|
|
|
}
|