mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 08:16:10 +01:00
10 lines
137 B
Nix
10 lines
137 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
programs.steam = {
|
|
enable = true;
|
|
extraCompatPackages = with pkgs; [
|
|
proton-ge-bin
|
|
]
|
|
};
|
|
}
|