mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-06 10:56:35 +01:00
16 lines
277 B
Nix
16 lines
277 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
hardware.steam-hardware.enable = true;
|
|
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
dedicatedServer.openFirewall = true;
|
|
};
|
|
|
|
chaotic.steam.extraCompatPackages = with pkgs; [
|
|
luxtorpeda
|
|
proton-ge-custom
|
|
];
|
|
}
|