17 lines
190 B
Nix
17 lines
190 B
Nix
{
|
|
self,
|
|
inputs,
|
|
...
|
|
}: {
|
|
flake.nixosModules.hardware = {
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
hardware = {
|
|
bluetooth.enable = true;
|
|
xpadneo.enable = true;
|
|
};
|
|
};
|
|
}
|