From e11a0658b3c47459767ba49ccfe319a2b8c73456 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Fri, 7 Feb 2025 22:49:30 -0800 Subject: migration: fastfetch --- snowfall/modules/home/suites/misc/default.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 snowfall/modules/home/suites/misc/default.nix (limited to 'snowfall/modules/home/suites/misc') diff --git a/snowfall/modules/home/suites/misc/default.nix b/snowfall/modules/home/suites/misc/default.nix new file mode 100644 index 0000000..99d4e10 --- /dev/null +++ b/snowfall/modules/home/suites/misc/default.nix @@ -0,0 +1,17 @@ +{ 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; + }; + }; + }; +} -- cgit v1.2.3