12 lines
241 B
Nix
12 lines
241 B
Nix
{ config, pkgs, makeEnable, ... }:
|
|
makeEnable config "modules.games" false {
|
|
environment.systemPackages = with pkgs; [
|
|
steam
|
|
# heroic
|
|
];
|
|
boot.extraModulePackages = with pkgs; [
|
|
xboxdrv
|
|
];
|
|
hardware.xone.enable = true;
|
|
}
|