1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/modules/services/autorandr.nix

54 lines
1.2 KiB
Nix
Raw Normal View History

2023-01-26 16:08:17 +01:00
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.services.autorandr;
in {
meta.maintainers = [ maintainers.GaetanLepage ];
options = {
services.autorandr = {
enable = mkEnableOption "" // {
description = ''
2023-01-26 16:08:17 +01:00
Whether to enable the Autorandr systemd service.
This module is complementary to {option}`programs.autorandr`
which handles the configuration (profiles).
2023-01-26 16:08:17 +01:00
'';
};
ignoreLid = mkOption {
default = false;
type = types.bool;
description =
"Treat outputs as connected even if their lids are closed.";
2023-01-26 16:08:17 +01:00
};
};
};
config = mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.autorandr" pkgs
lib.platforms.linux)
];
systemd.user.services.autorandr = {
Unit = {
Description = "autorandr";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
Service = {
Type = "oneshot";
ExecStart = "${pkgs.autorandr}/bin/autorandr --change ${
optionalString cfg.ignoreLid "--ignore-lid"
}";
};
Install.WantedBy = [ "graphical-session.target" ];
};
};
}