nixos-configuration/roles/subroles/entertainment.nix
2020-05-30 14:07:02 +02:00

21 lines
335 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
steam
steam-run
#lutris
#multimc
#(wine.override { wineBuild = "wineWow"; })
mplayer
spotify
vlc
teamspeak_client
];
# needed for steam
hardware.opengl.driSupport32Bit = true;
hardware.pulseaudio.support32Bit = true;
}