aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/fastfetch.nix
blob: f3efcab93838d6bf2c5521b76d603f55b9452606 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  config,
  lib,
  ...
}: let
  cfg = config.sils.fastfetch;
in {
  options.sils.fastfetch = {
    enable = lib.mkEnableOption "fastfetch";
  };
  config = lib.mkIf cfg.enable {
    programs.fastfetch = {
      enable = true;
    };
  };
}