From cd6897dbf68b905b55e6f4ec73c28a2476fce3ac Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 26 May 2026 13:08:05 -0400 Subject: prepare kaworu host for new pc --- lib/default.nix | 2 ++ lib/monitors.nix | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 lib/monitors.nix (limited to 'lib') diff --git a/lib/default.nix b/lib/default.nix index 21031c8..dcfb442 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -2,9 +2,11 @@ callLibs = file: import file inputs; files = callLibs ./files.nix; colors = callLibs ./colors.nix; + monitors = callLibs ./monitors.nix; in { inherit (files) getFiles certs sshKeys gpgKeys; inherit (colors) colorToInt colorToHex darkenColor lightenColor mixColor; + inherit monitors; # set of options we want to copy from a system # config to home manager 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; +} -- cgit v1.3.1-freya