Files
nixos/apps/fastfetch/home.nix
T
2025-12-28 15:15:37 -06:00

60 lines
1.2 KiB
Nix

{pkgs, ...}: {
programs.fastfetch = {
enable = true;
settings = {
"$schema" = "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json";
logo = {
source = "~/.config/fastfetch/arch.txt";
padding = {
top = 1;
};
};
display = {
separator = " ";
};
modules = [
"break"
"break"
"title"
{
type = "os";
key = "os ";
keyColor = "33";
}
{
type = "kernel";
key = "kernel";
keyColor = "33";
}
{
type = "host";
format = "{5} {1}";
key = "host ";
keyColor = "33";
}
{
type = "packages";
format = "{} (nix)";
key = "pkgs ";
keyColor = "33";
}
{
type = "cpu";
format = " {2}";
key = "cpu";
keyColor = "33";
}
{
type = "memory";
key = "memory";
keyColor = "33";
}
"break"
"break"
];
};
};
home.file.".config/fastfetch/arch.txt".source = ./arch.txt;
}