nixos_config/home/wm/hyprland.nix
2025-08-24 16:05:54 +02:00

18 lines
384 B
Nix

{ pkgs, config, hostName, lib, ... }: {
wayland.windowManager.hyprland.settings = {
decoration = {
shadow_offset = "0 5";
"col.shadow" = "rgba(00000099)";
};
"$mod" = "SUPER";
bindm = [
# mouse movements
"$mod, mouse:272, movewindow"
"$mod, mouse:273, resizewindow"
"$mod ALT, mouse:272, resizewindow"
];
};
} # end file