From 2011c16fc48747a7fde1e544ee48d219e70e5bb8 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 2 Apr 2024 11:05:20 +0100 Subject: [PATCH] Set workspace 4 (chat) to laptop monitor by default --- hosts/Ronin/home.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/Ronin/home.nix b/hosts/Ronin/home.nix index 378ec2b9..aca5f0c7 100644 --- a/hosts/Ronin/home.nix +++ b/hosts/Ronin/home.nix @@ -1,5 +1,8 @@ {pkgs, ...}: { imports = [../Scorch/home.nix]; home.packages = [(pkgs.writeShellScriptBin "ukaea-vpn-connect" "sudo ${pkgs.openfortivpn}/bin/openfortivpn -c ${./ukaea-vpn.conf}")]; - wayland.windowManager.hyprland.settings.monitor = ["eDP-1,1920x1080,2560x576,1.20"]; + wayland.windowManager.hyprland.settings = { + workspace = ["4, monitor:eDP-1, default:true"]; + monitor = ["eDP-1,1920x1080,2560x576,1.20"]; + }; }