10 lines
146 B
Nix
10 lines
146 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
services = lib.mkIf config.niksos.hardware.joycond {
|
|
usbmuxd.enable = true;
|
|
joycond.enable = true;
|
|
};
|
|
}
|