diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-07 22:49:30 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:49 -0700 |
| commit | e11a0658b3c47459767ba49ccfe319a2b8c73456 (patch) | |
| tree | f7f3919b71715adee6477dd7bfcaa93b3cc8bf0c /snowfall/modules/home/suites | |
| parent | bb80a276f5bc23c884fe8af922d371b216bc5b4b (diff) | |
migration: fastfetch
Diffstat (limited to 'snowfall/modules/home/suites')
| -rw-r--r-- | snowfall/modules/home/suites/misc/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
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; + }; + }; + }; +} |