nix-config/modules/fastfetch.nix

49 lines
849 B
Nix

{
programs.fastfetch = {
enable = true;
settings = {
logo = {
source = "/home/rainy/.config/nc.png";
padding = {
right = 1;
};
type = "kitty";
width = 28;
height = 14;
};
display = {
size = {
binaryPrefix = "si";
};
color = "blue";
separator = " ";
};
modules = [
{
type = "datetime";
key = "Date";
format = "{1}-{3}-{11}";
}
{
type = "datetime";
key = "Time";
format = "{14}:{17}:{20}";
}
"kernel"
"os"
"packages"
"de"
"wm"
"cpu"
"gpu"
"memory"
"disk"
"shell"
"break"
"player"
"media"
];
};
};
}