{ config, lib, pkgs, ... }: { options = { theme = { font = { size = lib.mkOption { type = lib.types.float; default = 12.0; description = "Global font size for all applications"; }; family = lib.mkOption { type = lib.types.str; default = "BlexMono Nerd Font"; }; }; desktop = { gap-size = lib.mkOption { default = 10; type = lib.types.int; }; }; }; }; }