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

17 lines
201 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";
color_align = {
mode = "horizontal";
};
};
2024-05-02 10:02:32 +02:00
};
}