aboutsummaryrefslogtreecommitdiff
path: root/snowfall/modules/home/suites/misc/default.nix
blob: 5ffaba55c29300e987c5ec177673e11ae8502606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ options, config, lib, namespace, ... }:

with lib; with lib.${namespace}; let
  cfg = config.${namespace}.suites.misc;
in {
  options.${namespace}.suites.misc = with types; {
    enable = mkEnableOption "misc";
  };

  config = mkIf cfg.enable {
    cxl = {
      apps = {
        fastfetch.enable = true;
        pfetch.enable = true;
      };
    };
  };
}