Files
nixos/modules/home-manager/fastfetch.nix
T
2024-07-19 16:23:01 -04:00

54 lines
1009 B
Nix

{ pkgs, ... }:
{
programs.fastfetch = {
enable = true;
settings = {
logo = {
source = "~/pictures/smol-penguin.png";
type = "kitty-direct";
width = 18;
height = 9;
padding = {
top = 2;
left = 1;
right = 3;
};
};
display = {
separator = " -> ";
};
modules = [
"title"
{
type = "custom";
format = " Env ";
}
{
type = "os";
key = "OS ";
}
{
type = "wm";
key = "WM ";
}
"editor"
"break"
{
type = "custom";
format = " Sys ";
}
"cpu"
"gpu"
{
type = "memory";
key = "MEM";
}
"vulkan"
"disk"
"battery"
];
};
};
}