13 lines
197 B
Nix
13 lines
197 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
nixpkgs.config.steam.java = true;
|
|
environment.systemPackages = with pkgs; [
|
|
steam
|
|
];
|
|
hardware.opengl.driSupport32Bit = true;
|
|
|
|
#ports for inhome streaming
|
|
}
|