12 lines
235 B
Nix
12 lines
235 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
options.niksos.joycond = lib.mkEnableOption "support for nintendo switch controllers.";
|
|
|
|
config.services = lib.mkIf config.niksos.joycond {
|
|
usbmuxd.enable = true;
|
|
joycond.enable = true;
|
|
};
|
|
}
|