diff options
Diffstat (limited to 'hosts/sofue')
| -rw-r--r-- | hosts/sofue/configuration.nix | 37 |
1 files changed, 20 insertions, 17 deletions
diff --git a/hosts/sofue/configuration.nix b/hosts/sofue/configuration.nix index a05ccf4..572034e 100644 --- a/hosts/sofue/configuration.nix +++ b/hosts/sofue/configuration.nix @@ -12,7 +12,9 @@ in rec { ../../nix/bluetooth.nix ../../nix/email.nix ../../nix/amdgpu.nix + #../../nix/intel.nix ../../nix/gaming.nix + ../../nix/steam.nix ../../nix/virtualisation.nix ../../nix/scripts.nix ../../nix/programs/bash.nix @@ -22,7 +24,7 @@ in rec { ../../nix/programs/firefox.nix ../../nix/programs/obs.nix ../../nix/programs/kdeconnect.nix - ../../nix/programs/docker.nix + #../../nix/programs/docker.nix ./programs.nix ]; @@ -57,12 +59,12 @@ in rec { footer-offset = 0; }; monitors = { + #monitor1 = "DP-1"; + #monitor2 = "HDMI-A-1"; + #monitor3 = "HDMI-A-3"; monitor1 = "DP-1"; - monitor2 = "HDMI-A-1"; - monitor3 = "HDMI-A-3"; - #monitor1 = "DP-2"; - #monitor2 = "DP-1"; - #monitor3 = ""; + monitor2 = "DP-2"; + monitor3 = "HDMI-A-1"; }; }; @@ -174,8 +176,8 @@ in rec { output = { "${monitor1}" = { mode = "2560x1440@144.000Hz"; - #position = "3000 200"; - position = "1080 200"; + position = "3000 200"; + #position = "1080 200"; allow_tearing = "yes"; max_render_time = "off"; adaptive_sync = "on"; @@ -185,20 +187,21 @@ in rec { "${monitor2}" = { mode = "1920x1080@60.000Hz"; transform = "270"; - #position = "1920 0"; - position = "0 0"; + position = "1920 0"; + #position = "0 0"; allow_tearing = "no"; max_render_time = "7"; render_bit_depth = "10"; bg = "#${colo.background-alt} solid_color"; }; - #"${monitor3}" = { - # mode = "1920x1080@60.000Hz"; - # position = "0 1000"; - # max_render_time = "6"; - # render_bit_depth = "10"; - # bg = "#${colo.background-alt} solid_color"; - #}; + "${monitor3}" = { + mode = "1920x1080@60.000Hz"; + position = "0 1000"; + max_render_time = "7"; + render_bit_depth = "10"; + allow_tearing = "no"; + bg = "#${colo.background-alt} solid_color"; + }; }; workspaceOutputAssign = [ { workspace = "1"; output = "${monitor1}"; } |