summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-05-26 13:08:05 -0400
committerFreya Murphy <freya@freyacat.org>2026-05-26 13:08:05 -0400
commitcd6897dbf68b905b55e6f4ec73c28a2476fce3ac (patch)
tree3b57010dfeb8b4aea8ef2fec904b0529ccd0894e /lib
parent'cores' option is defunct (diff)
downloaddotfiles-nix-cd6897dbf68b905b55e6f4ec73c28a2476fce3ac.tar.gz
dotfiles-nix-cd6897dbf68b905b55e6f4ec73c28a2476fce3ac.tar.bz2
dotfiles-nix-cd6897dbf68b905b55e6f4ec73c28a2476fce3ac.zip
prepare kaworu host for new pc
Diffstat (limited to 'lib')
-rw-r--r--lib/default.nix2
-rw-r--r--lib/monitors.nix21
2 files changed, 23 insertions, 0 deletions
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;
+}