nixos-configuration/machines/entertainment.nix
2023-03-06 12:11:18 +01:00

28 lines
503 B
Nix

inputs:
{ config, lib, pkgs, ... }: {
environment.systemPackages = with pkgs; [
steam
steam-run
#lutris
#multimc
#(wine.override { wineBuild = "wineWow"; })
mplayer
spotify
vlc
teamspeak_client
# support both 32- and 64-bit applications
wineWowPackages.stable
# winetricks (all versions)
winetricks
];
# needed for steam
hardware.opengl.driSupport32Bit = true;
hardware.pulseaudio.support32Bit = true;
programs.steam.enable = true;
}