summaryrefslogtreecommitdiff
path: root/lib/monitors.nix
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-05-26 13:27:07 -0400
committerFreya Murphy <freya@freyacat.org>2026-05-26 13:27:07 -0400
commita45de9e2e216cf73e976192814cdbdbb9164be30 (patch)
tree4c2cb500b9d568693597a676ef2b8d27a93284d3 /lib/monitors.nix
parentprepare kaworu host for new pc (diff)
downloaddotfiles-nix-a45de9e2e216cf73e976192814cdbdbb9164be30.tar.gz
dotfiles-nix-a45de9e2e216cf73e976192814cdbdbb9164be30.tar.bz2
dotfiles-nix-a45de9e2e216cf73e976192814cdbdbb9164be30.zip
make lib extendable with our additions
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;
+ };
}