Some checks failed
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 11s
Check Nix formatting / Perform Nix format checks (pull_request) Successful in 1m59s
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (pull_request) Failing after 3m36s
Check Nix flake / Build nix outputs (ubuntu-latest) (pull_request) Successful in 19m23s
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
21 lines
460 B
Nix
21 lines
460 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = [ pkgs.steam-run ];
|
|
hardware.steam-hardware.enable = true;
|
|
programs = {
|
|
gamescope = {
|
|
enable = true;
|
|
capSysNice = true;
|
|
};
|
|
steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
localNetworkGameTransfers.openFirewall = true;
|
|
extraCompatPackages = with pkgs; [ proton-ge-bin ];
|
|
gamescopeSession.enable = true;
|
|
extest.enable = true;
|
|
};
|
|
};
|
|
}
|