From eb16a7d8d9a90e88a1ec8d5c65d91db021b4e1e1 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Fri, 7 Feb 2025 05:31:59 -0800 Subject: migration: git config --- snowfall/modules/home/suites/common/default.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 snowfall/modules/home/suites/common/default.nix (limited to 'snowfall/modules/home/suites/common') diff --git a/snowfall/modules/home/suites/common/default.nix b/snowfall/modules/home/suites/common/default.nix new file mode 100644 index 0000000..c4620ee --- /dev/null +++ b/snowfall/modules/home/suites/common/default.nix @@ -0,0 +1,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; + }; + }; + }; +} + -- cgit v1.2.3