1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00
home-manager/modules/programs/trippy.nix
2025-07-24 15:01:14 -05:00

73 lines
1.9 KiB
Nix

{
lib,
pkgs,
config,
...
}:
let
inherit (lib)
types
mkIf
mkEnableOption
mkPackageOption
mkOption
;
cfg = config.programs.trippy;
tomlFormat = pkgs.formats.toml { };
in
{
meta.maintainers = with lib.hm.maintainers; [ aguirre-matteo ];
options.programs.trippy = {
enable = mkEnableOption "trippy";
package = mkPackageOption pkgs "trippy" { nullable = true; };
settings = mkOption {
type = tomlFormat.type;
default = { };
example = {
theme-colors = {
bg-color = "black";
border-color = "gray";
text-color = "gray";
tab-text-color = "green";
};
bindings = {
toggle-help = "h";
toggle-help-alt = "?";
toggle-settings = "s";
toggle-settings-tui = "1";
toggle-settings-trace = "2";
toggle-settings-dns = "3";
toggle-settings-geoip = "4";
};
};
description = ''
Configuration settings for trippy. All the available options can be found
here: <https://trippy.rs/reference/configuration/>
'';
};
forceUserConfig = mkOption {
type = types.bool;
default = true;
example = false;
description = ''
Whatever to force trippy to use user's config through the -c flag.
This will prevent certain commands such as 'sudo' ignoring
the configured settings. This will only work if you have
'programs.<shell>.enable' (bash, zsh, fish, ...), depending
on your shell.
'';
};
};
config = mkIf cfg.enable {
home.packages = mkIf (cfg.package != null) [ cfg.package ];
xdg.configFile."trippy/trippy.toml" = mkIf (cfg.settings != { }) {
source = tomlFormat.generate "trippy-config" cfg.settings;
};
home.shellAliases = mkIf cfg.forceUserConfig {
trip = "trip -c ${config.xdg.configHome}/trippy/trippy.toml";
};
};
}