Files
dotfiles/home/fastfetch/default.nix
T
2026-07-10 19:53:11 +01:00

76 lines
1.5 KiB
Nix

{ pkgs, ... }:
{
programs.fastfetch = {
enable = true;
settings = {
logo = {
type = "kitty-direct";
source = ./logo.png;
width = 20;
height = 10;
padding = {
top = 0;
left = 3;
};
};
display = {
separator = " ";
};
modules = [
{
type = "title";
key = "╭─  ->";
keyColor = "36";
}
{
type = "os";
key = "├─ 󱄅 ->";
keyColor = "36";
}
{
type = "kernel";
key = "╰─  ->";
keyColor = "36";
}
{
type = "shell";
key = "╭─  ->";
keyColor = "33";
}
{
type = "terminal";
key = "├─  ->";
keyColor = "33";
}
{
type = "custom";
format = "{#yellow}╰─  ->{#} kutu.rb";
}
{
type = "host";
key = "╭─ 󰌢 ->";
keyColor = "32";
}
{
type = "memory";
key = "├─ 󰍛 ->";
keyColor = "32";
}
{
type = "packages";
key = "╰─  ->";
keyColor = "32";
}
{
type = "custom";
format = " {#black} {#red} {#green} {#yellow} {#blue} {#magenta} {#cyan} {#white} {#default}";
}
];
};
};
}