mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-22 14:43:08 +01:00
11 lines
241 B
Nix
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;
|
|
};
|
|
}
|