Files
.github
.vscode
docs
hydra
keys
lib
modules
systems
artemision
bob
configuration.nix
default.nix
hardware.nix
nvidia.nix
steam.nix
jeeves
jeeves-jr
palatine-hill
rhapsody-in-green
users
.envrc
.gitconfig
.gitignore
.sops.yaml
checks.nix
flake.lock
flake.nix
shell.nix
sops-mergetool.sh
statix.toml
treefmt.toml
nix-dotfiles/systems/bob/steam.nix
2024-06-15 03:25:36 +00:00

16 lines
351 B
Nix

{ 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 ];
extest.enable = true;
};
};
}