1
0
Fork 0
forked from UniverseBow/flake
flake-ooni/homes/modules/cli/hyfetch.nix

27 lines
476 B
Nix
Raw Permalink Normal View History

2026-03-25 22:55:15 -07:00
{pkgs, ...}: {
home.packages = with pkgs; [
2026-03-27 13:06:24 +10:00
fastfetch
2026-03-25 22:55:15 -07:00
];
programs.hyfetch = {
enable = true;
settings = {
2026-03-27 13:06:24 +10:00
backend = "fastfetch";
2026-03-25 22:55:15 -07:00
args = null;
distro = null;
preset = "transgender";
pride_month_disable = false;
custom_ascii_path = null;
mode = "rgb";
light_dark = "light";
auto_detect_light_dark = true;
lightness = 0.65;
color_align = {
mode = "horizontal";
};
};
};
}