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:
parent
13fbbe382f
commit
38f36e7c3e
1 changed files with 8 additions and 6 deletions
|
@ -183,7 +183,7 @@ in {
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home.packages = [ cfg.package ];
|
home.packages = [ cfg.package ];
|
||||||
|
|
||||||
xdg.configFile."broot" = {
|
xdg.configFile.broot = {
|
||||||
recursive = true;
|
recursive = true;
|
||||||
source = pkgs.symlinkJoin {
|
source = pkgs.symlinkJoin {
|
||||||
name = "xdg.configFile.broot";
|
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 =
|
nushell.extraConfig =
|
||||||
mkIf cfg.enableNushellIntegration (shellInit "nushell");
|
mkIf cfg.enableNushellIntegration (shellInit "nushell");
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue