nix-config/aspects/gaming/steam.nix
2026-02-12 18:50:38 -03:00

19 lines
329 B
Nix

{ ... }:
{
flake.modules.nixos.gaming-steam =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
steam-run
];
programs = {
steam = {
enable = true;
extraCompatPackages = [ pkgs.proton-ge-bin ];
};
gamemode.enable = true;
};
};
}