nixos/modules/home/hyprland/binds.nix

16 lines
202 B
Nix

{
lib,
osConfig,
...
}:
with lib;
let
cfg = osConfig.modules.hyprland;
in
{
wayland.windowManager.hyprland.settings = {
bind = [
"$modifier,Return,exec,${cfg.terminal}"
];
};
}