summary refs log tree commit diff
path: root/nixos/modules/services/misc/autorandr.nix
blob: 6746f3fec698784d4faf9fb2f57a9b766bb8bfe5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ config, lib, pkgs, ... }:

with lib;

let

  cfg = config.services.autorandr;

in {

  options = {

    services.autorandr = {
      enable = mkEnableOption "handling of hotplug and sleep events by autorandr";
    };

  };

  config = mkIf cfg.enable {

    services.udev.packages = [ pkgs.autorandr ];

    environment.systemPackages = [ pkgs.autorandr ];

    # systemd.unitPackages = [ pkgs.autorandr ];
    systemd.services.autorandr = {
      unitConfig = {
        Description = "autorandr execution hook";
        After = [ "sleep.target" ];
        StartLimitInterval = "5";
        StartLimitBurst = "1";
      };
      serviceConfig = {
        ExecStart = "${pkgs.autorandr}/bin/autorandr --batch --change --default default";
        Type = "oneshot";
        RemainAfterExit = false;
      };
      wantedBy = [ "sleep.target" ];
    };

  };

}