hosts: remove cr, move systems up directory

This commit is contained in:
Charlie Root 2024-09-09 11:11:53 +02:00
commit 081848ddfc
16 changed files with 3 additions and 2 deletions

View file

@ -0,0 +1 @@
_: {imports = [./monitors.nix];}

View file

@ -0,0 +1,40 @@
_: {
modules.system.hardware.monitors = {
DP-2 = {
resolution = {
x = 1920;
y = 1080;
};
scale = 1;
refreshRate = 60;
position = {
x = 0;
y = 0;
};
};
HDMI-A-2 = {
resolution = {
x = 1920;
y = 1080;
};
scale = 1;
refreshRate = 60;
position = {
x = 1920;
y = 0;
};
};
HDMI-A-1 = {
resolution = {
x = 1920;
y = 1080;
};
scale = 1;
refreshRate = 60;
position = {
x = 3840;
y = 0;
};
};
};
}