This commit is contained in:
Lilith 2025-08-05 19:45:35 +02:00
parent c1ffc32ab6
commit f4b76401df
No known key found for this signature in database
GPG key ID: 272C807BD91F8446
5 changed files with 57 additions and 42 deletions

View file

@ -41,6 +41,17 @@ in
];
};
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";
};
};
# SteamVR kernel patch for AMDGPU
boot.kernelPatches = gaming-host [
{