diff --git a/modules/services/window-managers/hyprland.nix b/modules/services/window-managers/hyprland.nix index 86bab625..49ec0f8d 100644 --- a/modules/services/window-managers/hyprland.nix +++ b/modules/services/window-managers/hyprland.nix @@ -250,6 +250,7 @@ in "$" "bezier" "name" + "output" ]; example = [ "$" diff --git a/tests/modules/services/hyprland/simple-config.conf b/tests/modules/services/hyprland/simple-config.conf index 261b0d93..787455e2 100644 --- a/tests/modules/services/hyprland/simple-config.conf +++ b/tests/modules/services/hyprland/simple-config.conf @@ -32,6 +32,14 @@ input { kb_layout=ro } +monitorv2 { + output=desc:Monitor + mode=highres + position=auto-right + scale=1 + vrr=1 +} + plugin { plugin1 { section { diff --git a/tests/modules/services/hyprland/simple-config.nix b/tests/modules/services/hyprland/simple-config.nix index 3ee1de01..30cbac5d 100644 --- a/tests/modules/services/hyprland/simple-config.nix +++ b/tests/modules/services/hyprland/simple-config.nix @@ -10,6 +10,16 @@ settings = { source = [ "sourced.conf" ]; + monitorv2 = [ + { + output = "desc:Monitor"; + mode = "highres"; + position = "auto-right"; + scale = 1; + vrr = 1; + } + ]; + decoration = { shadow_offset = "0 5"; "col.shadow" = "rgba(00000099)";