{ lib, config, ... }: let inherit (lib) mkIf mkOption types; in { options.smayzy.chromium.enable = mkOption { type = types.bool; default = false; description = "chromium"; }; config = mkIf config.smayzy.chromium.enable { programs.chromium.enable = true; }; }