11 lines
191 B
Nix
Raw Normal View History

2023-11-04 02:28:27 +01:00
{ lib, config, pkgs, ... }:
let cfg = config.hostcfg.make.game;
in {
config = lib.mkIf cfg {
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
};
};
}