nixcfg/homeManagerModules/apps/fastfetch/config.nix
Aly Raffauf 701ae18d2e
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / adjustor-build (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / emudeck-build (push) Waiting to run
nix-build / hhd-ui-build (push) Waiting to run
nix-build / rofi-bluetooth-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
fastfetch: add gpu info
2024-12-05 11:41:22 -05:00

75 lines
1.2 KiB
Nix

{
"$schema" = "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json";
display = {separator = " ";};
logo = {
padding = {
bottom = 3;
top = 3;
};
source = "NixOS_small";
};
modules = [
"break"
"title"
{
format = "{5} {1}";
key = "host ";
keyColor = "33";
type = "host";
}
{
format = "{3}";
key = "os ";
keyColor = "33";
type = "os";
}
{
format = "{1}d {2}h {3}m";
key = "uptime";
keyColor = "33";
type = "uptime";
}
{
key = "kernel";
keyColor = "33";
type = "kernel";
}
{
format = "{1}";
key = "wm ";
keyColor = "33";
type = "wm";
}
{
format = "{1}";
key = "cpu ";
keyColor = "33";
type = "cpu";
}
{
format = "{2}";
key = "gpu ";
keyColor = "33";
type = "gpu";
}
{
key = "memory";
keyColor = "33";
type = "memory";
}
{
format = "{1} / {2} ({3})";
key = "disk ";
keyColor = "33";
type = "disk";
}
{
format = "{5} ({4})";
key = "bat ";
keyColor = "33";
type = "battery";
}
"break"
];
}