nyx/modules/home-manager/cli/fastfetch.nix

85 lines
1.8 KiB
Nix
Raw Normal View History

{ pkgs, lib, config, ... }: {
2024-10-12 23:08:10 +00:00
programs.fastfetch = {
enable = true;
settings = {
logo = {
type = "sixel";
source = "~/Pictures/gay.png";
2024-10-12 23:08:10 +00:00
width = 32;
};
display = { separator = " "; };
2024-10-12 23:08:10 +00:00
modules = [
{
type = "custom";
format = " Hardware Information ";
2024-10-12 23:08:10 +00:00
}
{
type = "cpu";
key = " ";
2024-10-12 23:08:10 +00:00
}
{
type = "gpu";
key = " ";
2024-10-12 23:08:10 +00:00
}
{
type = "memory";
key = " 󰑭";
2024-10-12 23:08:10 +00:00
}
{
type = "swap";
key = " 󰓡";
2024-10-12 23:08:10 +00:00
}
{
type = "custom";
format = " Software Information ";
2024-10-12 23:08:10 +00:00
}
{
type = "title";
key = " ";
format = "{1}@{2}";
2024-10-12 23:08:10 +00:00
}
{
type = "os";
key = " ";
2024-10-12 23:08:10 +00:00
}
{
type = "kernel";
key = " ";
format = "{1} {2}";
2024-10-12 23:08:10 +00:00
}
{
type = "wm";
key = " ";
2024-10-12 23:08:10 +00:00
}
{
type = "shell";
key = " ";
2024-10-12 23:08:10 +00:00
}
{
type = "terminal";
key = " ";
2024-10-12 23:08:10 +00:00
}
{
type = "uptime";
key = " 󰅐";
2024-10-12 23:08:10 +00:00
}
{
type = "media";
key = " 󰝚";
2024-10-12 23:08:10 +00:00
}
{
type = "custom";
format = "";
2024-10-12 23:08:10 +00:00
}
{
type = "colors";
paddingLeft = 2;
symbol = "circle";
2024-10-12 23:08:10 +00:00
}
];
};
};
}