nixpkgs/nixos/modules/services/hardware/xow.nix

31 lines
644 B
Nix
Raw Normal View History

2019-12-22 20:10:48 +00:00
{ config, pkgs, lib, ... }:
let
cfg = config.services.hardware.xow;
in {
options.services.hardware.xow = {
enable = lib.mkEnableOption "Whether to enable xow or not.";
};
config = lib.mkIf cfg.enable {
hardware.uinput.enable = true;
users.users.xow = {
group = "uinput";
isSystemUser = true;
};
systemd.services.xow = {
wantedBy = [ "multi-user.target" ];
description = "Xbox One Wireless Dongle Driver";
after = [ "systemd-udev-settle.service" ];
serviceConfig = {
ExecStart = ''
${pkgs.xow}/bin/xow
'';
User = "xow";
};
};
};
}