all repos — nixfiles @ f1a49dcee9df5c96ec5c261373c43c6da70701e4

System and user configuration, managed by nix and home-manager

laptop: Add multi-display setup
Alan Pearce alan@alanpearce.eu
Sat, 09 Sep 2017 15:51:54 +0200
commit

f1a49dcee9df5c96ec5c261373c43c6da70701e4

parent

5e68b39af8a46a0a9c68b57aa84d8689e06be1ed

1 files changed, 32 insertions(+), 0 deletions(-)

jump to
M modules/laptop.nixmodules/laptop.nix
@@ -12,14 +12,42 @@   environment.systemPackages = with pkgs; [
     powerstat
     powertop
+
+    arandr
+    autorandr
+    disper
   ];
 
+  # powerManagement.resumeCommands = ''
+  #   AUTORANDR="autorandr -c"
+
+  #   detect_display()
+  #   {
+  #     for X in /tmp/.X11-unix/X*; do
+  #       D="''${X##/tmp/.X11-unix/X}"
+  #       user=$(who | awk -vD="$D" '$5 ~ "\\(:"D"\\)$" {print $1}')
+  #       if [ x"$user" != x"" ]; then
+  #         export DISPLAY=":$D"
+  #         /bin/su -c "''${AUTORANDR}" "$user"
+  #       fi
+  #     done
+  #   }
+
+  #   case "$1" in
+  #     thaw|resume)
+  #       detect_display
+  #       ;;
+  #   esac
+  # '';
+
   programs.light.enable = true;
 
   services.logind.extraConfig = ''
     IdleAction=suspend
     IdleActionSec=600
   '';
+
+  services.physlock.enable = true;
 
   services.tlp = {
     enable = true;
@@ -27,6 +55,10 @@ extraConfig = ''       CPU_SCALING_GOVERNOR_ON_BAT=powersave
     '';
   };
+
+  services.udev.extraRules = ''
+    # ACTION=="change", SUBSYSTEM=="drm", ENV{DISPLAY}=":0", ENV{XAUTHORITY}="/home/alan/.Xauthority", RUN+="${pkgs.autorandr}/bin/autorandr -c"
+  '';
 
   services.xserver = {
     libinput = {