DashNix/modules/programs/xone.nix
2024-08-25 19:10:41 +02:00

21 lines
354 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 = true; };
}