1
Fork 0
nixos-system-config/home/packages/fastfetch.nix

29 lines
417 B
Nix
Raw Normal View History

2024-05-30 19:48:29 +02:00
{ ... }:
{
programs.fastfetch = {
enable = true;
settings = {
modules = [
"title"
"separator"
"os"
"kernel"
2024-06-23 22:53:04 +02:00
"initsystem"
2024-05-30 19:48:29 +02:00
"uptime"
2024-06-23 22:53:04 +02:00
"datetime"
2024-05-30 19:48:29 +02:00
"packages"
"terminal"
2024-06-23 22:53:04 +02:00
"wm"
"shell"
2024-05-30 19:48:29 +02:00
"cpu"
"gpu"
"memory"
"break"
"colors"
];
};
};
}