.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
16 lines
351 B
Nix
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;
|
|
};
|
|
};
|
|
}
|