nixos-configuration/machines/entertainment.nix

31 lines
563 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
2024-06-15 16:02:25 +02:00
# podcast app with nextcloud sync
libsForQt5.kasts
2022-02-18 16:36:24 +01:00
teamspeak_client
2023-03-06 12:11:18 +01:00
# support both 32- and 64-bit applications
wineWowPackages.stable
# winetricks (all versions)
winetricks
2022-02-18 16:36:24 +01:00
];
# needed for steam
hardware.opengl.driSupport32Bit = true;
hardware.pulseaudio.support32Bit = true;
programs.steam.enable = true;
}