a dotfile but it's really big
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

niri: new screens setup

karitham 9a780bfb 9df95afa

+34 -16
+34 -16
modules/desktop/wm/niri.nix
··· 86 86 } 87 87 ]; 88 88 89 - outputs = { 90 - eDP-1 = { 91 - # defaults for kiwi 92 - mode = { 89 + outputs = 90 + let 91 + lg = { 92 + width = 2560; 93 + height = 1440; 94 + }; 95 + benq = { 96 + width = 2560; 97 + height = 1440; 98 + }; 99 + edp = { 93 100 width = 1920; 94 101 height = 1200; 95 102 }; 96 - position = { 97 - x = 0; 98 - y = 0; 103 + in 104 + { 105 + "LG Electronics LG ULTRAGEAR 511NTCZHB395" = { 106 + mode = lg; 107 + transform = { 108 + rotation = 90; 109 + }; 110 + position = { 111 + x = 0; 112 + y = 0; 113 + }; 99 114 }; 100 - }; 101 - HDMI-A-1 = { 102 - mode = { 103 - width = 2560; 104 - height = 1440; 115 + "PNP(BNQ) BenQ EX2710R ETF9M01632SL0" = { 116 + mode = benq; 117 + position = { 118 + x = lg.height; 119 + y = 0; 120 + }; 105 121 }; 106 - position = { 107 - x = config.programs.niri.settings.outputs.eDP-1.mode.width; 108 - y = 0; 122 + eDP-1 = { 123 + mode = edp; 124 + position = { 125 + x = lg.height; 126 + y = benq.height; 127 + }; 109 128 }; 110 129 }; 111 - }; 112 130 113 131 binds = 114 132 with config.lib.niri.actions;