all repos — nixfiles @ 0a50d682ec85bf023bebd68a3ca388001f0c0677

System and user configuration, managed by nix and home-manager

user/settings/gaming.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ config, pkgs, ... }:

{
  home.packages = with pkgs; [
    unstable.steam
    (
      unstable.winePackages.unstable.override {
        pngSupport = true;
        jpegSupport = true;
        tiffSupport = true;
        gettextSupport = true;
        fontconfigSupport = true;
        alsaSupport = true;
        gtkSupport = true;
        openglSupport = true;
        tlsSupport = true;
        gstreamerSupport = true;
        cupsSupport = true;
        colorManagementSupport = true;
        dbusSupport = true;
        mpg123Support = true;
        openalSupport = true;
        openclSupport = true;
        cairoSupport = true;
        odbcSupport = true;
        netapiSupport = true;
        cursesSupport = true;
        vaSupport = true;
        pcapSupport = true;
        v4lSupport = true;
        saneSupport = true;
        gsmSupport = true;
        gphoto2Support = true;
        ldapSupport = true;
        pulseaudioSupport = true;
        udevSupport = true;
        xineramaSupport = true;
        xmlSupport = true;
        vulkanSupport = true;
        sdlSupport = true;
      }
    )
    unstable.lutris
  ];
}