aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/hyfetch.nix
blob: b40a37e051f248c1d3e685ebab4185e4612b9630 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  config,
  lib,
  ...
}: let
  cfg = config.sils.hyfetch;
in {
  options.sils.hyfetch = {
    enable = lib.mkEnableOption "hyfetch";
  };

  config = lib.mkIf cfg.enable {
    programs.hyfetch = {
      enable = true;
      settings = {
        preset = "rainbow";
        mode = "rgb";
        light_dark = "dark";
        lightness = 0.5;
        color_align = {
          mode = "horizontal";
          custom_colors = [];
          fore_back = null;
        };
        backend = "neofetch";
        distro = null;
        pride_month_shown = [];
      };
    };
  };
}