mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
23 lines
402 B
Nix
23 lines
402 B
Nix
![]() |
{ config, lib, pkgs, ... }:
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
blobby
|
||
|
discord
|
||
|
minecraft
|
||
|
minetest
|
||
|
openttd
|
||
|
superTuxKart
|
||
|
steam
|
||
|
SDL
|
||
|
SDL2
|
||
|
wine
|
||
|
winetricks
|
||
|
];
|
||
|
|
||
|
programs.steam.enable = true;
|
||
|
|
||
|
hardware.opengl.driSupport32Bit = true;
|
||
|
hardware.opengl.extraPackages32 = with pkgs.pkgsi686Linux; [ libva ];
|
||
|
hardware.pulseaudio.support32Bit = true;
|
||
|
}
|