NixOS-Config/home-manager/shared/shell/hyfetch.nix

21 lines
300 B
Nix

{
config,
lib,
pkgs,
...
}: {
programs.hyfetch = {
enable = true;
settings = {
preset = "transgender";
mode = "rgb";
light_dark = "dark";
lightness = 0.65;
color_align = {
mode = "horizontal";
};
backend = "neofetch";
};
};
}