11 lines
269 B
Nix
11 lines
269 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.steam = {
|
|
enable = true;
|
|
# Doubt that I'll use it, but I'll enable it anyways
|
|
remotePlay.openFirewall = true;
|
|
};
|
|
# Some linux native games (rise of the tomb raider) use alsa for sound
|
|
services.pipewire.alsa.enable = true;
|
|
}
|