nix-config/modules/default/home-manager/shell/hyfetch.nix
2025-01-07 23:28:53 +01:00

53 lines
976 B
Nix

{ ... }:
{
programs.hyfetch = {
enable = true;
settings = {
preset = "transgender";
mode = "rgb";
light_dark = "dark";
lightness = 0.69;
color_align = {
mode = "horizontal";
custom_colors = [ ];
fore_back = null;
};
backend = "fastfetch";
args = null;
distro = null;
pride_month_shown = [ ];
pride_month_disable = false;
};
};
programs.fastfetch = {
enable = true;
settings = {
modules = [
"title"
"separator"
"os"
"host"
{
type = "localip";
showIpv6 = false;
showMac = false;
showSpeed = false;
showMtu = false;
showLoop = false;
showFlags = false;
}
"kernel"
"uptime"
"packages"
"shell"
"wm"
"cpu"
"gpu"
"memory"
"break"
"colors"
];
};
};
}