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

21 lines
300 B
Nix
Raw Normal View History

2024-05-02 10:02:32 +02:00
{
config,
lib,
pkgs,
...
}: {
programs.hyfetch = {
enable = true;
2024-05-02 11:11:12 +02:00
settings = {
preset = "transgender";
2024-05-02 11:14:22 +02:00
mode = "rgb";
light_dark = "dark";
lightness = 0.65;
2024-05-02 11:11:12 +02:00
color_align = {
mode = "horizontal";
};
2024-05-02 11:14:22 +02:00
backend = "neofetch";
2024-05-02 11:11:12 +02:00
};
2024-05-02 10:02:32 +02:00
};
}