nixos-config/modules/system/steam/default.nix

25 lines
579 B
Nix
Raw Normal View History

2024-08-17 00:08:53 +02:00
{ pkgs, ... }:
2024-08-13 19:56:30 +02:00
{
2024-08-25 10:35:50 +02:00
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 = [ "graphical-session.target" ];
Restart = "on-failure";
RestartSec = "5s";
};
};
2024-08-13 19:56:30 +02:00
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
2024-08-17 00:08:53 +02:00
environment.systemPackages = [
pkgs.gamescope
];
2024-08-13 19:56:30 +02:00
}