blob: 99d4e102273baa6ab2c5e27801c0851998f9c0ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
};
};
};
}
|