18 lines
259 B
Nix
18 lines
259 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;
|
||
|
}
|