forked from mirrors/nixpkgs
1af6417b86
NixOS should be able to support the Nintendo Switch Pro controller for steam and non-steam at the same time. Currently there are two mutually exclusive ways to support the Pro Controller: Steam and `hid-nintendo`. Unfortunately these don't work together, but there's a workaround in newer versions of `joycond` (described [here](https://wiki.archlinux.org/title/Gamepad#Using_hid-nintendo_pro_controller_with_Steam_Games_(with_joycond))). To use this workaround `hid-nintendo` and `joycond` need to be updated, and the systemd and udev configuration needs to be made available in NixOS.
41 lines
904 B
Nix
41 lines
904 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.services.joycond;
|
|
kernelPackages = config.boot.kernelPackages;
|
|
in
|
|
|
|
with lib;
|
|
|
|
{
|
|
options.services.joycond = {
|
|
enable = mkEnableOption "support for Nintendo Pro Controllers and Joycons";
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.joycond;
|
|
defaultText = "pkgs.joycond";
|
|
description = ''
|
|
The joycond package to use.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = [
|
|
kernelPackages.hid-nintendo
|
|
cfg.package
|
|
];
|
|
|
|
boot.extraModulePackages = [ kernelPackages.hid-nintendo ];
|
|
boot.kernelModules = [ "hid_nintendo" ];
|
|
|
|
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" ];
|
|
};
|
|
}
|