37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{
|
|
inputs,
|
|
...
|
|
}: {
|
|
poz.other = {
|
|
system = {
|
|
inherit (inputs.work-secrets) hostname username;
|
|
platform = "x86_64-linux";
|
|
};
|
|
hardware.monitors = {
|
|
eDP-1 = {
|
|
resolution = { w = 1920; h = 1080; };
|
|
refreshRate = 60;
|
|
position = { x = 0; y = 0; };
|
|
scale = 1.0;
|
|
};
|
|
# DVI-I-1 = {
|
|
# resolution = { w = 1920; h = 1200; };
|
|
# refreshRate = 60;
|
|
# position = { x = 1920; y = 0; };
|
|
# scale = 1.0;
|
|
# };
|
|
# DVI-I-2 = {
|
|
# resolution = { w = 1920; h = 1200; };
|
|
# refreshRate = 60;
|
|
# position = { x = 1920 * 2; y = 0; };
|
|
# scale = 1.0;
|
|
# };
|
|
DVI-I-1 = {
|
|
resolution = { w = 2560; h = 1440; };
|
|
refreshRate = 144;
|
|
position = { x = 1920; y = 0; };
|
|
scale = 1.0;
|
|
};
|
|
};
|
|
};
|
|
}
|