fix hyprland bind?

This commit is contained in:
minish 2025-01-01 01:16:14 -05:00
parent 55be6ac84b
commit 13f46f49ce
Signed by: min
SSH Key Fingerprint: SHA256:NFjjdbkd6u7aoMlcrDCVvz6o2UBtlAuPm8IQ2vhZ3Fg
1 changed files with 9 additions and 1 deletions

View File

@ -1,11 +1,19 @@
_: {
{pkgs, ...}: {
programs.kitty = {
enable = true;
shellIntegration.enableZshIntegration = true;
};
# electron app hint
home.sessionVariables.NIXOS_OZONE_WL = "1";
wayland.windowManager.hyprland = {
enable = true;
xwayland.enable = true;
settings = {
"$mod" = "SUPER";
bind = ["$mod, Return, exec, ${pkgs.kitty}/bin/kitty"];
};
};
}