diff options
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/beryllium.nix | 9 | ||||
-rw-r--r-- | profiles/laptop.nix | 4 |
2 files changed, 10 insertions, 3 deletions
diff --git a/profiles/beryllium.nix b/profiles/beryllium.nix index cf180aa..f861d94 100644 --- a/profiles/beryllium.nix +++ b/profiles/beryllium.nix @@ -52,7 +52,7 @@ in { rate = "60.00"; }; DP-2 = { - enable = false; # macbook is currently using this monitor + enable = true; primary = false; position = "3840x0"; mode = "3840x2160"; @@ -73,6 +73,13 @@ in { DP-2 = DP-2 // { rotate = "left"; position = "2160x0"; }; }; }; + mixed = { + inherit fingerprint; + config = { + DP-0 = DP-0 // { rotate = "left"; }; + DP-2 = DP-2 // { position = "2160x840"; }; + }; + }; }; services.random-background.enable = lib.mkForce true; diff --git a/profiles/laptop.nix b/profiles/laptop.nix index ab9c8df..80c5998 100644 --- a/profiles/laptop.nix +++ b/profiles/laptop.nix @@ -22,8 +22,8 @@ services.polybar.enable = true; services.polybar.script = "polybar top &"; - srvices.polybar.config."bar/top".monitor = "\${env:MONITOR:HDMI-2}"; - srvices.polybar.config."bar/top".monitor-fallback = "\${env:MONITOR:eDP-1}"; + services.polybar.config."bar/top".monitor = "\${env:MONITOR:HDMI-2}"; + services.polybar.config."bar/top".monitor-fallback = "\${env:MONITOR:eDP-1}"; programs.autorandr.enable = true; |