diff --git a/system/hosts/vega/drew.nix b/system/hosts/vega/drew.nix index 3d39292..47876a6 100644 --- a/system/hosts/vega/drew.nix +++ b/system/hosts/vega/drew.nix @@ -22,9 +22,24 @@ userEmail = "periodic@blazestar.net"; }; - # Set up eww here because it's based on the monitor configuration - # Eww is idempotent, so it's fine to just run it on every reload to make sure things are open - wayland.windowManager.hyprland.settings.exec = [ - "eww daemon && eww open-many vertical-statusbar" - ]; + wayland.windowManager.hyprland.settings = { + # Set up eww here because it's based on the monitor configuration + # Eww is idempotent, so it's fine to just run it on every reload to make sure things are open + exec = [ + "eww daemon && eww open-many vertical-statusbar" + ]; + # Set up workspaces for this system + # See https://wiki.hyprland.org/Configuring/Workspace-Rules/ for workspace rules + workspace = [ + "1, defaultName:1" + "2, defaultName:2" + "3, defaultName:3" + "4, defaultName:4" + "5, defaultName:5" + "6, defaultName:6" + "7, defaultName:7" + "8, defaultName:8" + "9, defaultName:9" + ]; + }; }