sys-config/modules/home/cliPrograms/hyfetch.nix
2025-08-09 20:46:57 +02:00

20 lines
424 B
Nix

{ config, lib, ... }:
{
options.settings.programs.hyfetch = {
enable = lib.mkEnableOption "enables hyfetch";
};
config = lib.mkIf config.settings.programs.hyfetch.enable {
programs.hyfetch = {
enable = true;
settings = {
preset = "nonbinary";
lightness = 0.64;
color_align = {
mode = "horizontal";
};
backend = "fastfetch";
};
};
};
}