added steam.nix to bob

This commit is contained in:
Richie Cahill 2024-06-09 12:23:53 -04:00
parent 6322a5f5ce
commit c6f78d4bd3
2 changed files with 18 additions and 1 deletions

View File

@ -1,9 +1,10 @@
{
imports = [
./hardware.nix
../../users/richie/global/syncthing_base.nix
../../users/richie/global/zerotier.nix
./hardware.nix
./nvidia.nix
./steam.nix
];
boot = {

16
systems/bob/steam.nix Normal file
View File

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
environment.systemPackages = [ pkgs.steam-run ];
hardware.steam-hardware.enable = true;
programs = {
steam = {
enable = true;
remotePlay.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
gamescopeSession.enable = true;
extest.enable = true;
};
};
}