mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
37 lines
894 B
Nix
37 lines
894 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.services.joycond;
|
|
kernelPackages = config.boot.kernelPackages;
|
|
in
|
|
|
|
with lib;
|
|
|
|
{
|
|
options.services.joycond = {
|
|
enable = mkEnableOption (lib.mdDoc "support for Nintendo Pro Controllers and Joycons");
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.joycond;
|
|
defaultText = "pkgs.joycond";
|
|
description = lib.mdDoc ''
|
|
The joycond package to use.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
boot.extraModulePackages = optional (versionOlder kernelPackages.kernel.version "5.16") kernelPackages.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" ];
|
|
};
|
|
}
|