From aa1ac68a50f6a1c1d4252d999ea908a3d2de72d5 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Fri, 7 Feb 2025 18:48:40 -0800 Subject: migration: cmus --- snowfall/modules/home/suites/media/default.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 snowfall/modules/home/suites/media/default.nix (limited to 'snowfall/modules/home/suites') diff --git a/snowfall/modules/home/suites/media/default.nix b/snowfall/modules/home/suites/media/default.nix new file mode 100644 index 0000000..33a3394 --- /dev/null +++ b/snowfall/modules/home/suites/media/default.nix @@ -0,0 +1,17 @@ +{ options, config, lib, namespace, ... }: + +with lib; with lib.${namespace}; let + cfg = config.${namespace}.suites.media; +in { + options.${namespace}.suites.media = with types; { + enable = mkEnableOption "media"; + }; + + config = mkIf cfg.enable { + cxl = { + apps = { + cmus.enable = true; + }; + }; + }; +} -- cgit v1.2.3