Files
nixos/modules/system/core/hardware.nix
2026-07-04 18:25:42 +01:00

17 lines
190 B
Nix

{
self,
inputs,
...
}: {
flake.nixosModules.hardware = {
pkgs,
lib,
...
}: {
hardware = {
bluetooth.enable = true;
xpadneo.enable = true;
};
};
}