mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-06 11:26:50 +01:00
18 lines
331 B
Nix
18 lines
331 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
hardware.steam-hardware.enable = true;
|
|
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
dedicatedServer.openFirewall = true;
|
|
};
|
|
|
|
programs.steam.gamescopeSession.enable = true;
|
|
|
|
#chaotic.steam.extraCompatPackages = with pkgs; [
|
|
# luxtorpeda
|
|
# proton-ge-custom
|
|
#];
|
|
}
|