Files
nix-config/home/programs/steam.nix
2024-11-19 20:28:31 +01:00

10 lines
137 B
Nix

{ inputs, pkgs, ... }:
{
programs.steam = {
enable = true;
extraCompatPackages = with pkgs; [
proton-ge-bin
]
};
}