Alejandro Angulo
eb6422e943
I originally added the openGL config for steam so I think it makes sense to define that in the steam module.
29 lines
455 B
Nix
29 lines
455 B
Nix
{
|
|
options,
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.aa.apps.steam;
|
|
in {
|
|
options.aa.apps.steam = with types; {
|
|
enable = mkEnableOption "steam";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
dedicatedServer.openFirewall = true;
|
|
};
|
|
|
|
hardware.opengl = {
|
|
enable = true;
|
|
driSupport = true;
|
|
driSupport32Bit = true;
|
|
};
|
|
};
|
|
}
|