nixos-config/home-manager/fetch.nix

47 lines
928 B
Nix
Raw Normal View History

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