We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb0752b commit f2ccc49Copy full SHA for f2ccc49
devices/family-nixos-rog/configuration.nix
@@ -22,8 +22,20 @@
22
remotePlay.openFirewall = true;
23
dedicatedServer.openFirewall = true;
24
localNetworkGameTransfers.openFirewall = true;
25
+
26
+ # Add better Proton compatibility tools
27
+ extraCompatPackages = with pkgs; [
28
+ proton-ge-bin # GE-Proton for better game compatibility
29
+ ];
30
};
31
32
+ # Create shared Steam library folder for all family members
33
+ # Each user should add /home/shared/steam as a Steam Library in Steam settings
34
+ systemd.tmpfiles.rules = [
35
+ "d /home/shared 0755 root root -"
36
+ "d /home/shared/steam 0775 root users -" # Group-writable by all users
37
38
39
# Nvidia GPU configuration (RTX 4070 Ti SUPER)
40
services.xserver.videoDrivers = [ "nvidia" ];
41
0 commit comments