nixos/xone: enable xpad-noone by default

Co-authored-by: misuzu <neironyan@gmail.com>
This commit is contained in:
Cryolitia PukNgae 2025-03-14 15:23:04 +08:00
parent 43e898e4f3
commit ef059726f1
No known key found for this signature in database
GPG key ID: 3E5D1772FC8A8EDD
2 changed files with 3 additions and 0 deletions

View file

@ -477,6 +477,8 @@
- [`system.stateVersion`](#opt-system.stateVersion) is now validated and must be in the `"YY.MM"` format, ideally corresponding to a prior NixOS release.
- [`hardware.xone`](options.html#opt-hardware.xone.enable) will also enable [`hardware.xpad-noone`](options.html#opt-hardware.xpad-noone.enable) to provide Xbox 360 driver by default.
- `services.mysql` now supports easy cluster setup via [`services.mysql.galeraCluster`](#opt-services.mysql.galeraCluster.enable) option.
Example:

View file

@ -21,6 +21,7 @@ in
extraModulePackages = with config.boot.kernelPackages; [ xone ];
};
hardware.firmware = [ pkgs.xow_dongle-firmware ];
hardware.xpad-noone.enable = lib.mkDefault true;
};
meta = {