{ config, pkgs, inputs, lib, ... }: { options = { apps.terminal.toys = lib.mkEnableOption "enable terminal toys"; }; config = { environment.systemPackages = with pkgs; [ unzip btop bc openssl ] ++ lib.mkIf config.apps.terminal.toys [ asciiquarium-transparent cava bunnyfetch nerdfetch fastfetch cmatrix astroterm ]; }; }