diff options
Diffstat (limited to 'accounts/gkleen@sif/autorandr-profiles/wk.nix')
-rw-r--r-- | accounts/gkleen@sif/autorandr-profiles/wk.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/accounts/gkleen@sif/autorandr-profiles/wk.nix b/accounts/gkleen@sif/autorandr-profiles/wk.nix new file mode 100644 index 00000000..97fa14c9 --- /dev/null +++ b/accounts/gkleen@sif/autorandr-profiles/wk.nix | |||
@@ -0,0 +1,27 @@ | |||
1 | { pkgs, ... }: | ||
2 | { | ||
3 | fingerprint = { | ||
4 | "eDP-1-1" = "00ffffffffffff004c83414100000000131d0104b5221378029491ae513eb7240b505400000001010101010101010101010101010101f0d40040f17018803020440058c21000001bf0d40040f17018803020440058c21000001b0000000f00ff093cff093c2c800000000000000000fe0041544e413536575230382d3020011502030f00e3058000e6060501736d0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ab"; | ||
5 | "DP-1.3" = "00ffffffffffff000469a3289bdd00000b190104a53e22783a1cb5a3574fa0270d5054bfef00d1c0814081809500b300714f81c0010122cc0050f0703e80181035006d552100001a04740030f2705a80b0588a006d552100001a000000fd001e5018a03c041100f0f838f03c000000fc0041535553205042323837510a2001a8020327714f0102031112130414051f900e0f1d1e23091707830100006a030c0010000078200000565e00a0a0a02950302035006d552100001ee26800a0a0402e60302036006d552100001a011d00bc52d01e20b82855406d552100001e8c0ad090204031200c4055006d55210000180000000000000000000000000000000064"; | ||
6 | }; | ||
7 | config = { | ||
8 | "DP-1.3" = { | ||
9 | enable = true; | ||
10 | primary = true; | ||
11 | position = "3840x0"; | ||
12 | rate = "60"; | ||
13 | mode = "3840x2160"; | ||
14 | }; | ||
15 | eDP-1-1 = { | ||
16 | enable = true; | ||
17 | primary = false; | ||
18 | position = "0x0"; | ||
19 | mode = "3840x2160"; | ||
20 | }; | ||
21 | }; | ||
22 | hooks = { | ||
23 | postswitch = '' | ||
24 | ${pkgs.networkmanager}/nmcli radio wifi off | ||
25 | ''; | ||
26 | }; | ||
27 | } | ||