mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:43:55 -05:00
28 lines
617 B
Nix
28 lines
617 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
config =
|
|
lib.mkIf (
|
|
config.ar.apps.steam.enable
|
|
|| config.ar.desktop.steam.enable
|
|
) {
|
|
hardware.steam-hardware.enable = true;
|
|
|
|
programs = {
|
|
gamescope.enable = config.ar.desktop.steam.enable;
|
|
|
|
steam = {
|
|
enable = true;
|
|
dedicatedServer.openFirewall = true;
|
|
extraCompatPackages = with pkgs; [proton-ge-bin];
|
|
gamescopeSession.enable = config.ar.desktop.steam.enable;
|
|
localNetworkGameTransfers.openFirewall = true;
|
|
remotePlay.openFirewall = true;
|
|
};
|
|
};
|
|
};
|
|
}
|