18 lines
264 B
Nix
18 lines
264 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.steam = {
|
|
enable = true;
|
|
extraCompatPackages = with pkgs; [
|
|
proton-ge-bin
|
|
];
|
|
gamescopeSession.enable = true;
|
|
};
|
|
programs.gamemode.enable = true;
|
|
|
|
hardware.steam-hardware.enable = true;
|
|
}
|