depot/third_party/nixpkgs/nixos/modules/services/hardware/joycond.nix

27 lines
558 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
let
cfg = config.services.joycond;
in
with lib;
{
options.services.joycond = {
enable = mkEnableOption "support for Nintendo Pro Controllers and Joycons";
package = mkPackageOption pkgs "joycond" { };
};
config = mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
services.udev.packages = [ cfg.package ];
systemd.packages = [ cfg.package ];
# Workaround for https://github.com/NixOS/nixpkgs/issues/81138
systemd.services.joycond.wantedBy = [ "multi-user.target" ];
};
}