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

91 lines
1.8 KiB
Nix
Raw Normal View History

2024-12-20 13:11:42 +00:00
{
pkgs,
lib,
config,
...
}: {
2024-10-28 16:13:57 +00:00
home.file."Pictures/gay.png".source = ./gay.png;
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;
};
2024-12-20 13:11:42 +00:00
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
}
];
};
};
}