Files
nixos/modules/home-manager/fastfetch.nix
T

70 lines
1.4 KiB
Nix

{ pkgs, ... }:
{
programs.fastfetch = {
enable = true;
settings = {
logo = {
source = "nixos";
# source = "~/pictures/lil-penguin.png";
# type = "kitty";
width = 18;
height = 9;
color = {
"1" = "white";
"2" = "magenta";
};
padding = {
top = 0; # put this on 2 for picture source
left = 1;
right = 3;
};
};
display = {
separator = " -> ";
color = {
keys = "magenta";
};
};
modules = [
"title"
{
type = "custom";
format = " Env ";
color = "magenta";
}
{
type = "os";
key = "OS ";
}
{
type = "wm";
key = "WM ";
}
"editor"
"break"
{
type = "custom";
format = " Sys ";
}
"cpu"
"gpu"
{
type = "memory";
key = "MEM";
}
"vulkan"
"disk"
"battery"
{
type = "custom";
format = "";
}
"break"
"colors"
"break"
];
};
};
}