From 66f78ccf38656c9c13f7a2f7fb5311d484fc4062 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Mon, 6 Jan 2020 22:20:35 +0100 Subject: [PATCH] fix: reorder monitors --- systems/homeros/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/homeros/configuration.nix b/systems/homeros/configuration.nix index e90501d..1b19151 100644 --- a/systems/homeros/configuration.nix +++ b/systems/homeros/configuration.nix @@ -5,7 +5,7 @@ ./hardware-configuration.nix ]; - services.xserver.xrandrHeads = [ "LVDS1" { output = "HDMI1"; primary = true; } ]; + services.xserver.xrandrHeads = [ { output = "HDMI1"; primary = true; } "LVDS1" ]; environment.systemPackages = [ pkgs.unstable.zeroad pkgs.minecraft ];