refractor steam

This commit is contained in:
Mohamed Chrayed 2024-08-10 12:19:24 +02:00
parent becf1a971a
commit 495ac6bf6d
3 changed files with 19 additions and 4 deletions

Binary file not shown.

View File

@ -1,10 +1,7 @@
{ jovian, ... }:
{ ... }:
{
jovian.steam = {
enable = true;
autoStart = false;
user = "mo";
desktopSession = "plasma";
};
jovian.hardware.has.amd.gpu = true;

18
system/set-steam.nix Normal file
View File

@ -0,0 +1,18 @@
{ ... }:
{
jovian.steam = {
autoStart = false;
user = "mo";
desktopSession = "plasma";
};
jovian.hardware.has.amd.gpu = true;
jovian.hardware.amd.gpu.enableEarlyModesetting = true;
jovian.steamos.enableBluetoothConfig = true;
programs.steam = {
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
}