.github
.vscode
docs
hydra
keys
lib
modules
systems
artemision
bob
jeeves
jeeves-jr
palatine-hill
rhapsody-in-green
configuration.nix
default.nix
hardware.nix
steam.nix
users
.envrc
.gitconfig
.gitignore
.sops.yaml
checks.nix
flake.lock
flake.nix
shell.nix
sops-mergetool.sh
statix.toml
treefmt.toml
18 lines
418 B
Nix
18 lines
418 B
Nix
![]() |
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = [ pkgs.steam-run ];
|
||
|
hardware.steam-hardware.enable = true;
|
||
|
programs = {
|
||
|
gamescope.enable = true;
|
||
|
steam = {
|
||
|
enable = true;
|
||
|
remotePlay.openFirewall = true;
|
||
|
localNetworkGameTransfers.openFirewall = true;
|
||
|
extraCompatPackages = with pkgs; [ proton-ge-bin ];
|
||
|
gamescopeSession.enable = true;
|
||
|
extest.enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|