From c484adeccf568593a5a1ba797d64a5d4dfcaa057 Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Wed, 18 Jun 2025 14:14:58 +0200 Subject: [PATCH] misc --- modules/home/hyprland.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/modules/home/hyprland.nix b/modules/home/hyprland.nix index 74f5e20..f20bf2e 100644 --- a/modules/home/hyprland.nix +++ b/modules/home/hyprland.nix @@ -1,10 +1,11 @@ { # Hyprland settings - wayland.windowManager.hyprland.enable = true; - wayland.windowManager.hyprland.settings = { - input = { - kb_layout = "se"; - kb_variant = ""; + wayland.windowManager.hyprland = { + enable = true; + settings = { + input = { + kb_layout = "se"; + kb_variant = ""; kb_model = ""; kb_options = ""; kb_rules = ""; @@ -90,8 +91,9 @@ ); # Move/resize windows with mainMod + LMB/RMB and dragging bindm = [ - "$mod, mouse:272, movewindow" - "$mod, mouse:273, resizewindow" - ]; + "$mod, mouse:272, movewindow" + "$mod, mouse:273, resizewindow" + ]; + }; }; }