diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-19 16:13:41 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-19 16:13:41 +0200 |
| commit | 018971162cad0d64a17fbfef854467765edce987 (patch) | |
| tree | 695dfcd090224ada5744c0d70d0597851f44d362 /hosts/workstation/default.nix | |
| parent | 592518fa04638a22b1714b42ba33d45172ed9676 (diff) | |
workstation: configure monitors
Diffstat (limited to 'hosts/workstation/default.nix')
| -rw-r--r-- | hosts/workstation/default.nix | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/hosts/workstation/default.nix b/hosts/workstation/default.nix index 3b11993..ae730ae 100644 --- a/hosts/workstation/default.nix +++ b/hosts/workstation/default.nix @@ -1,4 +1,4 @@ -{ lib, pkgs, ... }: +{ ... }: { imports = [ ./hardware.nix @@ -23,6 +23,28 @@ position = "auto"; scale = 1; }; + + DP-2 = { + resolution = "preferred"; + position = "auto"; + scale = 1; + bar.enable = true; + }; + + DP-3 = { + resolution = "preferred"; + position = "auto"; + scale = 1; + transform = { + rotation = 90; + }; + }; + + HDMA-A-1 = { + resolution = "preferred"; + position = "auto"; + scale = 1; + }; }; webtray.instances = { |