Files
nixconfig/modules/nixos/gui/games/default.nix
2025-09-06 15:39:03 +02:00

12 lines
247 B
Nix

{ lib, config, pkgs, ... }:
let cfg = config.syscfg.make.game;
in {
config = lib.mkIf cfg {
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
extraCompatPackages = with pkgs; [proton-ge-bin];
};
};
}