Files
nixos/pkgs/fastfetch/biscuit.nix
T
2025-05-19 20:52:42 -05:00

36 lines
625 B
Nix

{...}: {
programs.fastfetch = {
enable = true;
settings = {
logo = {
source = "nixos_small";
padding = {
right = 1;
};
};
display = {
size = {
binaryPrefix = "si";
};
color = "blue";
separator = " ";
};
modules = [
{
type = "datetime";
key = "Date";
format = "{1}-{3}-{11}";
}
{
type = "datetime";
key = "Time";
format = "{14}:{17}:{20}";
}
"break"
"player"
"media"
];
};
};
}