Remove enableShellIntegration flags as they're all on by default anyway

This commit is contained in:
Evie Litherland-Smith 2024-02-11 06:54:07 +00:00
parent cc4bf59e73
commit e0c2577138
2 changed files with 6 additions and 11 deletions

View file

@ -8,6 +8,7 @@
./git/default.nix
./ssh/default.nix
./nushell/default.nix
./zsh/default.nix
./starship/default.nix
./bottom/default.nix
./config/default.nix
@ -20,20 +21,17 @@
};
programs = {
bash.enable = true;
carapace.enable = true;
fish.enable = true;
bat = {
enable = true;
config.theme = lib.mkIf config.stylix.targets.bat.enable "base16-stylix";
};
carapace = {
enable = true;
enableBashIntegration = true;
enableNushellIntegration = true;
};
eza = {
enable = true;
git = true;
icons = true;
enableAliases = false;
enableAliases = true;
extraOptions = ["--octal-permissions"];
};
readline = {
@ -46,12 +44,9 @@
direnv = {
enable = true;
nix-direnv.enable = true;
enableBashIntegration = true;
enableNushellIntegration = true;
};
fzf = {
enable = true;
enableBashIntegration = true;
defaultCommand = "${pkgs.fd}/bin/fd --type f";
changeDirWidgetCommand = "${pkgs.fd}/bin/fd --type d";
fileWidgetCommand = "${pkgs.fd}/bin/fd --type f";

View file

@ -1,8 +1,6 @@
{...}: {
programs.starship = {
enable = true;
enableBashIntegration = true;
enableNushellIntegration = true;
enableTransience = true;
settings = {
c = {symbol = " ";};
@ -103,7 +101,9 @@
disabled = false;
format = "using [$indicator ]($style)";
bash_indicator = "#";
fish_indicator = "󰈺 ";
nu_indicator = "ν";
zsh_indicator = "z";
unknown_indicator = "?";
};
status = {};