53 lines
959 B
Nix
53 lines
959 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"
|
|
];
|
|
};
|
|
};
|
|
}
|