dotfiles/nixos/games.nix

13 lines
223 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
steam
heroic
];
boot.extraModulePackages = with pkgs; [
xboxdrv
];
# hardware.xpadneo.enable = true;
hardware.xone.enable = true;
}