mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
28 lines
656 B
Nix
28 lines
656 B
Nix
{
|
|
programs.trippy = {
|
|
enable = true;
|
|
settings = {
|
|
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";
|
|
};
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/trippy/trippy.toml
|
|
assertFileContent home-files/.config/trippy/trippy.toml \
|
|
${./trippy.toml}
|
|
'';
|
|
}
|