nix-config/roles/nixos/gaming.nix

18 lines
264 B
Nix
Raw Normal View History

2024-05-22 13:52:00 -05:00
{
config,
pkgs,
lib,
...
}: {
programs.steam = {
enable = true;
extraCompatPackages = with pkgs; [
2024-05-22 13:52:00 -05:00
proton-ge-bin
];
gamescopeSession.enable = true;
2024-05-22 13:52:00 -05:00
};
programs.gamemode.enable = true;
2024-05-22 13:52:00 -05:00
hardware.steam-hardware.enable = true;
}