mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
16 lines
501 B
Nix
16 lines
501 B
Nix
|
_: {
|
||
|
# https://nixos.wiki/wiki/Steam
|
||
|
fonts.fontconfig.cache32Bit = true;
|
||
|
hardware.steam-hardware.enable = true;
|
||
|
hardware.opengl.driSupport32Bit = true;
|
||
|
programs = {
|
||
|
steam = {
|
||
|
enable = true;
|
||
|
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
|
||
|
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
|
||
|
};
|
||
|
};
|
||
|
services.jack.alsa.support32Bit = true;
|
||
|
services.pipewire.alsa.support32Bit = true;
|
||
|
}
|