nixos-config/modules/system/steam/default.nix
Mohamed C. 6c985d6f03
Some checks are pending
Flake.lock / build (push) Waiting to run
enable steam autostart
2024-08-31 10:10:15 +02:00

28 lines
610 B
Nix

{ pkgs, ... }:
{
systemd.user.services.steam = {
enable = true;
description = "Open Steam in the background at boot";
serviceConfig = {
ExecStart = "${pkgs.steam}/bin/steam -nochatui -nofriendsui -silent %U";
wantedBy= [ "default.target" ];
Restart = "on-failure";
RestartSec = "5s";
};
};
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
environment.systemPackages =
(with pkgs; [
gamescope
mangohud
protonup-qt
]);
}