19 lines
370 B
Nix
19 lines
370 B
Nix
{
|
|
lib,
|
|
config,
|
|
options,
|
|
...
|
|
}: {
|
|
options.mods = {
|
|
xone.enable = lib.mkOption {
|
|
default = false;
|
|
type = lib.types.bool;
|
|
example = true;
|
|
description = ''
|
|
Enables the xone driver for xbox controllers.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = lib.optionalAttrs (options ? hardware) {hardware.xone.enable = config.mods.xone.enable;};
|
|
}
|