nixos-configs/devices/binto/modules/nix-gaming.nix
matt1432 a79cb29aaf
All checks were successful
Discord / discord commits (push) Has been skipped
feat(steam): add proton pkg that doesn't change name in steam
2024-08-01 00:41:47 -04:00

37 lines
634 B
Nix

{
nix-gaming,
pkgs,
self,
...
}: {
imports = [
nix-gaming.nixosModules.platformOptimizations
];
programs = {
steam = {
enable = true;
remotePlay.openFirewall = true;
extraCompatPackages = [
self.packages.${pkgs.system}.proton-ge-latest
];
platformOptimizations.enable = true;
};
};
environment.systemPackages = [
(pkgs.lutris.override {
extraLibraries = pkgs: [
# List library dependencies here
];
extraPkgs = pkgs: [
# List extra packages available to lutris here
];
})
pkgs.r2modman
pkgs.ryujinx
];
}