summaryrefslogtreecommitdiff
path: root/nix-home-config/gaming.nix
blob: 2df20a2151c1b462c3bee41ad020e77e504ac468 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ config, pkgs, ... }:
let
  my_steam = pkgs.steam.override {
    # nativeOnly = true;
    withJava = true;
    extraPkgs = p: [
      pkgs.openldap
      pkgs.xorg.xrandr
    ];
  };
in
{
  home.packages = with pkgs; [
    wineWowPackages.staging
    my_steam
    my_steam.run
    obs-studio
    imagemagick
  ];
}