nixos-configs/configurations/binto/modules/nix-gaming/default.nix
matt1432 8326399b80
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: move machine specific modules inside subdirs
2025-01-17 14:46:47 -05:00

38 lines
668 B
Nix

{
nix-gaming,
pkgs,
self,
...
}: {
imports = [
nix-gaming.nixosModules.platformOptimizations
];
programs = {
steam = {
enable = true;
protontricks.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
];
}