diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/default.nix | 2 | ||||
| -rw-r--r-- | lib/monitors.nix | 21 |
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; +} |