{ config, lib, pkgs, ... }: { options = { keybinds = { modifier = lib.mkOption { default = "Meta"; description = "modifier key"; }; hotkeys = { terminal = lib.mkOption { default = "Return"; description = "terminal hotkey"; }; launcher = lib.mkOption { default = "D"; description = "launcher hotkey"; }; browser = lib.mkOption { default = "O"; description = "browser hotkey"; }; editor = lib.mkOption { default = "E"; description = "editor hotkey"; }; }; }; }; imports = [ ./hyprland.nix ./niri.nix ./sway.nix ]; }