10 lines
126 B
Nix
10 lines
126 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
programs.steam = {
|
|
enable = true;
|
|
extraCompatPackages = [pkgs.proton-ge-bin];
|
|
};
|
|
}
|