blob: 06a068a3f46cd6762e1102b6a5d2b7f2adf30075 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, pkgs, ... }:
{
nixpkgs.config.steam.java = true;
environment.systemPackages = with pkgs; [
steam
];
hardware.opengl.driSupport32Bit = true;
#ports for inhome streaming
}
|