feat: add a lot of stuff

This commit is contained in:
Jacob Bachmann 2023-12-11 15:48:55 +01:00
parent 8eb88574fb
commit 6067f0ff0b
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
47 changed files with 578 additions and 136 deletions

View file

@ -0,0 +1,42 @@
{ ... }: {
programs.autorandr = {
enable = true;
profiles = {
nomad = {
config = {
"LVDS-1" = {
enable = true;
};
};
};
station = {
config = {
"LVDS-1" = {
enable = false;
};
"DP-1-3" = {
enable = true;
mode = "1920x1080";
position = "0x0";
};
"DP-1-2" = {
enable = true;
mode = "1920x1080";
position = "1920x0";
};
"VGA-1-2" = {
enable = true;
mode = "1920x1080";
position = "3840x0";
};
};
};
};
};
}