1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00

broot: trivial code style changes

This commit is contained in:
Robin Stumm 2025-03-28 20:41:20 +01:00
parent 13fbbe382f
commit 38f36e7c3e
No known key found for this signature in database
GPG key ID: 3DA3D7B8285FBE55

View file

@ -183,7 +183,7 @@ in {
config = mkIf cfg.enable {
home.packages = [ cfg.package ];
xdg.configFile."broot" = {
xdg.configFile.broot = {
recursive = true;
source = pkgs.symlinkJoin {
name = "xdg.configFile.broot";
@ -205,13 +205,15 @@ in {
};
};
programs.bash.initExtra = mkIf cfg.enableBashIntegration (shellInit "bash");
programs = {
bash.initExtra = mkIf cfg.enableBashIntegration (shellInit "bash");
programs.zsh.initContent = mkIf cfg.enableZshIntegration (shellInit "zsh");
zsh.initContent = mkIf cfg.enableZshIntegration (shellInit "zsh");
programs.fish.shellInit = mkIf cfg.enableFishIntegration (shellInit "fish");
fish.shellInit = mkIf cfg.enableFishIntegration (shellInit "fish");
programs.nushell.extraConfig =
mkIf cfg.enableNushellIntegration (shellInit "nushell");
nushell.extraConfig =
mkIf cfg.enableNushellIntegration (shellInit "nushell");
};
};
}