nix-config/modules/nixos/gaming.nix

15 lines
196 B
Nix

{ pkgs, ... }:
{
programs.steam = {
enable = true;
};
# XBOX Controller
hardware.xone.enable = true;
environment.systemPackages = with pkgs; [
lutris
prismlauncher
];
}