22 lines
361 B
Nix
22 lines
361 B
Nix
![]() |
{pkgs, ...}: {
|
||
|
programs.steam = {
|
||
|
enable = true;
|
||
|
extraPackages = with pkgs; [
|
||
|
gamescope_git
|
||
|
latencyflex-vulkan
|
||
|
];
|
||
|
extraCompatPackages = with pkgs; [
|
||
|
proton-ge-custom
|
||
|
];
|
||
|
extest = {
|
||
|
enable = true;
|
||
|
};
|
||
|
protontricks = {
|
||
|
enable = true;
|
||
|
};
|
||
|
gamescopeSession = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|