2023-08-20 04:25:58 -06:00
|
|
|
{ config, pkgs, makeEnable, ... }:
|
|
|
|
makeEnable config "modules.games" false {
|
2018-06-18 18:12:26 -06:00
|
|
|
environment.systemPackages = with pkgs; [
|
2023-06-13 22:19:25 -06:00
|
|
|
steam
|
2023-11-17 23:10:44 -07:00
|
|
|
# heroic
|
2018-06-18 18:12:26 -06:00
|
|
|
];
|
2023-06-13 22:19:25 -06:00
|
|
|
boot.extraModulePackages = with pkgs; [
|
|
|
|
xboxdrv
|
|
|
|
];
|
|
|
|
hardware.xone.enable = true;
|
2018-06-18 18:12:26 -06:00
|
|
|
}
|