Files
nix-config/modules/nixos/gaming/steam.nix
2026-09-11 01:59:55 +05:30

10 lines
196 B
Nix

{
flake.modules.nixos.gaming = {pkgs, ...}: {
programs.steam = {
enable = true;
protontricks.enable = true;
extraCompatPackages = with pkgs; [proton-ge-bin];
};
};
}