mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 12:10:45 +02:00
63 lines
964 B
Nix
63 lines
964 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.fastfetch = {
|
|
enable = true;
|
|
settings = {
|
|
modules = [
|
|
"title"
|
|
"separator"
|
|
"os"
|
|
"host"
|
|
"kernel"
|
|
"packages"
|
|
"separator"
|
|
"wm"
|
|
"shell"
|
|
"terminal"
|
|
"theme"
|
|
"font"
|
|
"locale"
|
|
"separator"
|
|
"display"
|
|
"cpu"
|
|
"gpu"
|
|
"memory"
|
|
"disk"
|
|
"battery"
|
|
"separator"
|
|
"wifi"
|
|
"localip"
|
|
"break"
|
|
"colors"
|
|
];
|
|
};
|
|
};
|
|
|
|
xdg.configFile."fastfetch/startup.jsonc".text = builtins.toJSON {
|
|
logo = {
|
|
source = "nixos_small";
|
|
padding = {
|
|
bottom = 1;
|
|
};
|
|
};
|
|
display = {
|
|
separator = " ➜ ";
|
|
};
|
|
modules = [
|
|
"title"
|
|
"kernel"
|
|
"packages"
|
|
"shell"
|
|
"battery"
|
|
{
|
|
type = "separator";
|
|
string = " • ";
|
|
}
|
|
"break"
|
|
"break"
|
|
"break"
|
|
];
|
|
};
|
|
}
|