Files
nixos-config/hosts/desktop/steam.nix

14 lines
179 B
Nix

{ pkgs, ... }:
{
programs.steam = {
enable = true;
extest.enable = true;
remotePlay.openFirewall = true;
extraCompatPackages = with pkgs; [
proton-ge-bin
];
};
}