nixos-configs/homes/min/hyprland.nix

24 lines
424 B
Nix

{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"
"$mod, M, exit,"
];
};
};
}