aboutsummaryrefslogtreecommitdiff
path: root/snowfall/modules/home/suites/common/default.nix
blob: c4620eec5d5b2c5d0f2587322b52afc836268153 (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.common;
in {
  options.${namespace}.suites.common = with types; {
    enable = mkEnableOption "common";
  };

  config = mkIf cfg.enable {
    cxl = {
      tools = {
        git.enable = true;
      };
    };
  };
}