nix/programs/autorandr.nix

35 lines
1.3 KiB
Nix
Raw Normal View History

2024-06-13 15:38:40 +02:00
{ pkgs, ...}:
{
enable = true;
hooks.postswitch = {
"notify-i3" = "${pkgs.i3}/bin/i3-msg restart";
};
profiles = {
"main" = {
fingerprint = {
"HDMI-1" = "00ffffffffffff0026cd5861830600001d1f010380361e782a4c70a5574ea4260b5054a56b80710081408180a940b3009500950fd1c0023a801871382d40582c4500202f2100001e000000ff0031313737393132393031363637000000fd0038f01fff3c000a202020202020000000fc00504c3235393048530a2020202001b3020345f14c90040302011112131f203f40e200d5230907078301000067030c001000384467d85dc4017880006d1a0000020130f0e60000000000e305c301e60605016666005a8780a070384d4030203500202f2100001a23e88078703887401c40980c202f2100001a00000000000000000000000000000000000000000000e0";
"eDP-1" = "00ffffffffffff003870400000000000011c01049522137803f285975c588f281d5054000000010101010101010101010101010101012e3680a070381f403020350058c21000001a182480a070381f403020350058c21000001a00000000000000000000000000000000000000000002000c42f90b3c6a0c13237d0000000034";
};
config = {
"HDMI-1" = {
enable = true;
mode = "1920x1080";
rate = "239.76";
position = "1920x0";
};
"eDP-1" = {
enable = true;
mode = "1920x1080";
rate = "60.02";
primary = true;
position = "0x0";
};
};
};
};
}