nixos-configuration/machines/entertainment.nix

23 lines
381 B
Nix
Raw Normal View History

2022-02-18 16:36:24 +01:00
inputs:
{ config, lib, 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;
programs.steam.enable = true;
}