From a45de9e2e216cf73e976192814cdbdbb9164be30 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 26 May 2026 13:27:07 -0400 Subject: make lib extendable with our additions --- lib/monitors.nix | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'lib/monitors.nix') 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; + }; } -- cgit v1.3.1-freya