Files
nixconfig/modules/nixos/gui/games/default.nix
2025-09-17 14:42:44 +02:00

14 lines
285 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];
};
programs.gamemode.enable = true;
};
}