Files
nixos-config/modules/home-manager/hyprland/default.nix
T
2025-08-05 19:51:18 +02:00

25 lines
454 B
Nix

{ pkgs, ... }:
{
programs.kitty.enable = true;
wayland.windowManager.hyprland = {
enable = true;
package = pkgs.hyprland;
xwayland.enable = true;
settings = {
monitor = [
",preferred,auto,1"
];
"$mod" = "SUPER";
bind = [
"ALT,Return,exec,kitty"
"ALTSHIFT,Q,killactive,"
"ALT,V,togglefloating,"
"ALT,F,fullscreen,0"
"$mod,F,exec,firefox"
];
};
};
}