nixos-config/nixos/home/packages/tools/fastfetch.nix
foglar a687588378 Final update of my old configuration
- stylix
- cleanup and fixes
2025-05-05 15:46:45 +02:00

155 lines
4.1 KiB
Nix

{
lib,
config,
userSettings,
...
}: {
options = {
program.fastfetch.enable = lib.mkEnableOption "fastfetch";
};
config = lib.mkIf config.program.fastfetch.enable {
home.file = {
".config/fastfetch/logo.png".source =
if userSettings.theme == "evangelion-blood"
then ../../../../config/asuka.png
else ../../../../config/lain.jpeg;
};
programs.fastfetch = {
enable = true;
settings = {
"$schema" = "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json";
"logo" =
if userSettings.theme == "evangelion-blood" || userSettings.theme == "lain-blue"
then {
"source" = "/home/shinya/.config/fastfetch/logo.png";
"width" =
if userSettings.theme == "evangelion-blood"
then 34
else 42;
"height" =
if userSettings.theme == "evangelion-blood"
then 18
else 19;
"padding" = {
"top" =
if userSettings.theme == "evangelion-blood" || userSettings.theme == "lain-blue"
then 1
else 0;
};
}
else {
"source" = "default";
};
"modules" = [
"break"
{
"type" = "title";
"format" = "{#1} EVA 02 - {#}{user-name-colored}";
}
{
"type" = "custom";
"format" = "{#1} {#}System Information";
}
{
"type" = "os";
"key" = "{#separator} {#keys}󰍹 OS";
}
{
"type" = "kernel";
"key" = "{#separator} {#keys}󰒋 Kernel";
}
{
"type" = "uptime";
"key" = "{#separator} {#keys}󰅐 Uptime";
}
{
"type" = "packages";
"key" = "{#separator} {#keys}󰏖 Packages";
"format" = "{all}";
}
{
"type" = "custom";
"format" = "{#1}";
}
{
"type" = "custom";
"format" = "{#1} {#}Desktop Environment";
}
{
"type" = "de";
"key" = "{#separator} {#keys}󰧨 DE";
}
{
"type" = "wm";
"key" = "{#separator} {#keys}󱂬 WM";
}
{
"type" = "wmtheme";
"key" = "{#separator} {#keys}󰉼 Theme";
}
{
"type" = "display";
"key" = "{#separator} {#keys}󰹑 Resolution";
}
{
"type" = "shell";
"key" = "{#separator} {#keys}󰞷 Shell";
}
{
"type" = "terminalfont";
"key" = "{#separator} {#keys}󰛖 Font";
}
{
"type" = "custom";
"format" = "{#1}";
}
{
"type" = "custom";
"format" = "{#1} {#}Hardware Information";
}
{
"type" = "cpu";
"key" = "{#separator} {#keys}󰻠 CPU";
}
{
"type" = "gpu";
"key" = "{#separator} {#keys}󰢮 GPU";
}
{
"type" = "memory";
"key" = "{#separator} {#keys}󰍛 Memory";
}
{
"type" = "disk";
"key" = "{#separator} {#keys}󰋊 Disk (/)";
"folders" = "/";
}
{
"type" = "custom";
"format" = "{#1}";
}
#"separator"
#"os"
#"host"
#"kernel"
#"uptime"
#"packages"
#"shell"
#"de"
#"wm"
#"icons"
#"font"
#"cursor"
#"terminalfont"
#"cpu"
#"gpu"
#"disk"
#"break"
];
};
};
};
}