nixos-configuration/roles/subroles/entertainment.nix

23 lines
368 B
Nix
Raw Normal View History

2020-05-30 14:07:02 +02:00
{ 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;
2020-11-02 14:59:15 +01:00
programs.steam.enable = true;
2020-05-30 14:07:02 +02:00
}