summaryrefslogtreecommitdiff
path: root/lib/monitors.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/monitors.nix')
-rw-r--r--lib/monitors.nix34
1 files changed, 17 insertions, 17 deletions
diff --git a/lib/monitors.nix b/lib/monitors.nix
index 603b491..4cb2977 100644
--- a/lib/monitors.nix
+++ b/lib/monitors.nix
@@ -1,21 +1,21 @@
-_: let
- asus = {
- desc = "ASUSTek COMPUTER INC ASUS VA24E LALMTF215939";
- position = {
- enabled = true;
- x = 2048;
- y = 240;
- };
+_: {
+ # 1080p small ASUS monitor
+ asus = {
+ desc = "ASUSTek COMPUTER INC ASUS VA24E LALMTF215939";
+ position = {
+ enabled = true;
+ x = 2048;
+ y = 240;
};
+ };
- acer = {
- desc = "Acer Technologies EB321HQU 0x00000698";
- position = {
- enabled = true;
- x = 3968;
- y = 0;
- };
+ # 1440p 32in acer
+ acer = {
+ desc = "Acer Technologies EB321HQU 0x00000698";
+ position = {
+ enabled = true;
+ x = 3968;
+ y = 0;
};
-in {
- inherit asus acer;
+ };
}