16 lines
311 B
Nix
16 lines
311 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [ fastfetch ];
|
|
|
|
programs.hyfetch = {
|
|
enable = true;
|
|
settings = {
|
|
preset = "transgender";
|
|
pride_month_disable = true;
|
|
mode = "rgb";
|
|
lightness = 0.55;
|
|
color_align.mode = "horizontal";
|
|
backend = "fastfetch";
|
|
};
|
|
};
|
|
}
|