nix-config/users/willifan/hyfetch.nix
2024-05-21 18:08:32 +02:00

26 lines
536 B
Nix

{ pkgs, home-manager, ... }:
{
home-manager.users.willifan = {
programs.hyfetch = {
enable = true;
settings = {
preset = "transgender";
mode = "rgb";
light_dark = "dark";
lightness = 0.69;
color_align = {
mode = "horizontal";
custom_colors = [];
fore_back = null;
};
backend = "neofetch";
args = null;
distro = null;
pride_month_shown = [];
pride_month_disable = false;
};
};
};
}