dotfiles/nixos/games.nix

12 lines
239 B
Nix
Raw Permalink Normal View History

{ config, pkgs, makeEnable, ... }:
makeEnable config "modules.games" false {
2018-06-18 18:12:26 -06:00
environment.systemPackages = with pkgs; [
steam
heroic
2018-06-18 18:12:26 -06:00
];
boot.extraModulePackages = with pkgs; [
xboxdrv
];
hardware.xone.enable = true;
2018-06-18 18:12:26 -06:00
}