mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
Merge 38f36e7c3e
into 09280e17bb
This commit is contained in:
commit
396694ff38
2 changed files with 17 additions and 22 deletions
|
@ -6,10 +6,10 @@ let
|
||||||
|
|
||||||
cfg = config.programs.broot;
|
cfg = config.programs.broot;
|
||||||
|
|
||||||
tomlFormat = pkgs.formats.toml { };
|
jsonFormat = pkgs.formats.json { };
|
||||||
|
|
||||||
settingsModule = {
|
settingsModule = {
|
||||||
freeformType = tomlFormat.type;
|
freeformType = jsonFormat.type;
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
modal = mkEnableOption "modal (vim) mode";
|
modal = mkEnableOption "modal (vim) mode";
|
||||||
|
@ -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";
|
||||||
|
@ -194,31 +194,26 @@ in {
|
||||||
# Dummy file to prevent broot from trying to reinstall itself
|
# Dummy file to prevent broot from trying to reinstall itself
|
||||||
(pkgs.writeTextDir "launcher/installed-v1" "")
|
(pkgs.writeTextDir "launcher/installed-v1" "")
|
||||||
];
|
];
|
||||||
|
|
||||||
postBuild = ''
|
postBuild = ''
|
||||||
ln -s ${
|
|
||||||
tomlFormat.generate "broot-config" cfg.settings
|
|
||||||
} $out/conf.toml
|
|
||||||
|
|
||||||
# Remove conf.hjson, whose content has been merged into programs.broot.settings
|
|
||||||
rm $out/conf.hjson
|
rm $out/conf.hjson
|
||||||
|
${lib.getExe pkgs.jq} --slurp add > $out/conf.hjson \
|
||||||
|
<(${
|
||||||
|
lib.getExe pkgs.hjson-go
|
||||||
|
} -c ${cfg.package.src}/resources/default-conf/conf.hjson) \
|
||||||
|
${jsonFormat.generate "broot-config.json" cfg.settings}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.broot.settings = builtins.fromJSON (builtins.readFile
|
programs = {
|
||||||
(pkgs.runCommand "default-conf.json" {
|
bash.initExtra = mkIf cfg.enableBashIntegration (shellInit "bash");
|
||||||
nativeBuildInputs = [ pkgs.hjson-go ];
|
|
||||||
}
|
|
||||||
"hjson-cli -c ${cfg.package.src}/resources/default-conf/conf.hjson > $out"));
|
|
||||||
|
|
||||||
programs.bash.initExtra = mkIf cfg.enableBashIntegration (shellInit "bash");
|
zsh.initContent = mkIf cfg.enableZshIntegration (shellInit "zsh");
|
||||||
|
|
||||||
programs.zsh.initContent = mkIf cfg.enableZshIntegration (shellInit "zsh");
|
fish.shellInit = mkIf cfg.enableFishIntegration (shellInit "fish");
|
||||||
|
|
||||||
programs.fish.shellInit = mkIf cfg.enableFishIntegration (shellInit "fish");
|
nushell.extraConfig =
|
||||||
|
mkIf cfg.enableNushellIntegration (shellInit "nushell");
|
||||||
programs.nushell.extraConfig =
|
};
|
||||||
mkIf cfg.enableNushellIntegration (shellInit "nushell");
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
nixpkgs.overlays = [ (self: super: { inherit (realPkgs) broot hjson-go; }) ];
|
nixpkgs.overlays = [ (self: super: { inherit (realPkgs) broot hjson-go; }) ];
|
||||||
|
|
||||||
nmt.script = ''
|
nmt.script = ''
|
||||||
assertFileExists home-files/.config/broot/conf.toml
|
assertFileExists home-files/.config/broot/conf.hjson
|
||||||
assertFileContains home-files/.config/broot/conf.toml 'modal = true'
|
assertFileContains home-files/.config/broot/conf.hjson '"modal": true'
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue