From ff54d7e91909b30c61e2ec43d254a7af784a5d6a Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Fri, 12 Apr 2024 21:36:08 +0100 Subject: [PATCH] sway: add monitor config for Northstar --- hosts/Northstar/home.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hosts/Northstar/home.nix b/hosts/Northstar/home.nix index 98675058..87a323c7 100644 --- a/hosts/Northstar/home.nix +++ b/hosts/Northstar/home.nix @@ -1 +1,7 @@ -{...}: {wayland.windowManager.hyprland.settings.monitor = ["eDP-1,preferred,1920x0,1.50"];} +{...}: { + wayland.windowManager.sway.config.output = { + "eDP-1" = { + scale = "1.5"; + }; + }; +}