Files
nix-config/modules/nixos/gaming/steam.nix

12 lines
220 B
Nix

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