diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-05-26 13:08:05 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-05-26 13:08:05 -0400 |
| commit | cd6897dbf68b905b55e6f4ec73c28a2476fce3ac (patch) | |
| tree | 3b57010dfeb8b4aea8ef2fec904b0529ccd0894e /lib/monitors.nix | |
| parent | 'cores' option is defunct (diff) | |
| download | dotfiles-nix-cd6897dbf68b905b55e6f4ec73c28a2476fce3ac.tar.gz dotfiles-nix-cd6897dbf68b905b55e6f4ec73c28a2476fce3ac.tar.bz2 dotfiles-nix-cd6897dbf68b905b55e6f4ec73c28a2476fce3ac.zip | |
prepare kaworu host for new pc
Diffstat (limited to 'lib/monitors.nix')
| -rw-r--r-- | lib/monitors.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/monitors.nix b/lib/monitors.nix new file mode 100644 index 0000000..603b491 --- /dev/null +++ b/lib/monitors.nix @@ -0,0 +1,21 @@ +_: let + 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; + }; + }; +in { + inherit asus acer; +} |