zaneyos/config/system/amd-steam.nix
2024-01-20 22:33:57 -06:00

11 lines
241 B
Nix

{ pkgs, config, lib, deviceProfile, ... }:
lib.mkIf ("${deviceProfile}" == "amd-desktop") {
# Steam Configuration
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
}