nix-config/roles/nixos/gaming.nix
2024-05-22 13:52:00 -05:00

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;
}