{ config, lib, pkgs, ... }: { options = { terminal = { toys.enable = lib.mkEnableOption "enable terminal toys"; }; }; config = lib.mkIf config.terminal.toys.enable { home.packages = with pkgs; [ asciiquarium-transparent cava bunnyfetch nerdfetch fastfetch cmatrix astroterm ] }; }