vinheim: propagate bash

This commit is contained in:
L-Nafaryus 2025-04-30 17:50:00 +05:00
parent bf93f6fdf4
commit fb4afdb2ec
Signed by: L-Nafaryus
GPG Key ID: 553C97999B363D38
2 changed files with 12 additions and 1 deletions

View File

@ -7,7 +7,7 @@
}: {
programs.helix = {
enable = true;
extraPackages = with pkgs; [wl-clipboard pyright ruff alejandra];
extraPackages = with pkgs; [wl-clipboard pyright ruff alejandra bash-language-server];
settings = {
theme = "gruvbox";
@ -66,6 +66,10 @@
args = ["server"];
environment = {RUFF_TRACE = "messages";};
};
bash = {
command = "bash-language-server";
args = ["start"];
};
};
};
};

View File

@ -117,6 +117,11 @@ in {
};
};
programs.zoxide = {
enable = true;
enableNushellIntegration = true;
};
xdg.portal = {
enable = true;
configPackages = with pkgs; [
@ -407,6 +412,8 @@ in {
accent = "green";
};
programs.bash.enable = true;
programs.yazi = {
enable = true;
enableNushellIntegration = true;