nixdots/system/roles/workstation/display/wayland/services.nix

30 lines
716 B
Nix
Raw Permalink Normal View History

{
config,
pkgs,
lib,
...
}: let
inherit (lib) mkIf getExe;
cfgEnabled = config.myOptions.home-manager.wms.isWayland;
in {
config = mkIf cfgEnabled {
systemd.services = {
# Seat management daemon
2024-07-26 23:07:07 +00:00
# (Takes care of mediating access to shared devices (graphics, input), without requiring
# applications like Wayland compositors being granted root privileges)
seatd = {
enable = true;
description = "Seat management daemon";
script = "${getExe pkgs.seatd} -g wheel";
serviceConfig = {
Type = "simple";
Restart = "always";
RestartSec = "1";
};
wantedBy = ["multi-user.target"];
};
};
};
}