23 lines
610 B
Nix
23 lines
610 B
Nix
{
|
|
poz.other = {
|
|
system = {
|
|
hostname = "niks";
|
|
username = "jacek";
|
|
platform = "x86_64-linux";
|
|
};
|
|
hardware.monitors = {
|
|
eDP-1 = {
|
|
resolution = { w = 2560; h = 1440; };
|
|
refreshRate = 165;
|
|
position = { x = 0; y = 0; };
|
|
scale = 1.0;
|
|
};
|
|
HDMI-A-1 = {
|
|
resolution = { w = 2560; h = 1440; };
|
|
refreshRate = 144;
|
|
position = { x = 2560; y = 0; };
|
|
scale = 1.0;
|
|
};
|
|
};
|
|
};
|
|
}
|