nix/modules/programs/fastfetch/default.nix

30 lines
440 B
Nix
Raw Normal View History

2024-11-05 19:55:59 +01:00
{
2024-11-17 17:51:11 +01:00
programs.fastfetch = {
enable = true;
settings = {
logo = {
source = "nixos_small";
padding = {
right = 3;
};
};
display = {
color = "blue";
};
modules = [
"title"
"os"
"kernel"
"uptime"
"packages"
"shell"
"cpu"
"memory"
"disk"
"break"
"colors"
];
};
};
2024-11-05 19:55:59 +01:00
}