{ config, lib, ... }: with lib; let cfg = config.modules.hyprland; in { options.modules.hyprland = { enable = mkEnableOption { default = false; description = "Enable Hyprland"; }; terminal = mkOption { type = types.enum [ "kitty" "alacritty" ]; default = "kitty"; description = '' The terminal to use for Hyprland. ''; }; }; }