nixpkgs/nixos/modules/services/misc/autorandr.nix
2017-07-23 12:56:04 +03:00

35 lines
545 B
Nix

{ 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.packages = [ pkgs.autorandr ];
systemd.services.autorandr = {
wantedBy = [ "sleep.target" ];
};
};
meta.maintainers = with maintainers; [ gnidorah ];
}