nixos-config/home-manager/fetch.nix
2024-10-17 02:24:17 +02:00

47 lines
928 B
Nix

{ ... }:
{
programs.hyfetch = {
enable = true;
settings = {
preset = "lesbian";
mode = "rgb";
color_align = {
mode = "horizontal";
};
};
};
programs.fastfetch = {
enable = true;
settings = {
logo = {
type = "kitty-direct";
source = ../resources/fetch.png;
width = 32;
height = 16;
padding = {
top = 1;
left = 2;
right = 0;
};
};
modules = [
"break"
"title"
"break"
{ type = "host"; format = "{3}"; }
{ type = "os"; format = "{2}"; }
"de"
{ type = "wm"; format = "{2}"; }
"shell"
"kernel"
{ type = "cpu"; format = "{1}"; }
{ type = "gpu"; format = "{1} {2}"; }
{ type = "terminal"; format = "{5}"; }
"terminalfont"
"break"
"colors"
];
};
};
}