Files
nix-config/hosts/modules/steam.nix

9 lines
138 B
Nix

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