blob: 61cfbedd13f0bd4a8d7b5fc6630177ce85ff65b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ 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;
pfetch.enable = true;
cmatrix.enable = true;
asciiquarium.enable = true;
pipes.enable = true;
cowsay.enable = true;
figlet.enable = true;
};
};
};
}
|