land.nix: switch monitor map for independent system configs

This commit is contained in:
Charlie Root 2024-08-28 11:48:41 +02:00
commit 727b783f96
3 changed files with 26 additions and 27 deletions

View file

@ -1,18 +1,16 @@
_: {
modules.system.hardware.monitors = [
{
name = "Integrated laptop screen";
device = "eDP-1";
modules.system.hardware.monitors = {
eDP-1 = {
resolution = {
x = 1920;
y = 1080;
};
scale = 1;
refresh_rate = 60;
refreshRate = 60;
position = {
x = 0;
y = 0;
};
}
];
};
};
}