nixos-config/home-manager/fetch.nix

46 lines
887 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 = 31;
height = 15;
padding = {
top = 1;
left = 2;
right = 0;
};
};
modules = [
"break"
"title"
"break"
{ type = "host"; format = "{3}"; }
{ type = "os"; format = "{2}"; }
"de"
"shell"
"kernel"
{ type = "cpu"; format = "{1}"; }
{ type = "gpu"; format = "{1} {2}"; }
{ type = "terminal"; format = "{5}"; }
"terminalfont"
"break"
"colors"
];
};
};
}