blob: f41f96dd62dae45f3ccee1503db51cb3f6cd8c5a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
pkgs,
config,
lib,
...
}: {
imports = [
./global
./features/desktop
./features/games.nix
];
# ---------- ---------
# | HDMI-A-1 | | DVI-D-1 |
# ---------- ---------
wayland.windowManager.sway.config.output = {
HDMI-A-1 = {
resolution = "1920x1080";
position = "0,0";
};
DVI-D-1 = {
resolution = "1920x1080";
position = "1920,0";
};
};
}
|