11 lines
191 B
Nix
11 lines
191 B
Nix
{ lib, config, pkgs, ... }:
|
|
let cfg = config.hostcfg.make.game;
|
|
in {
|
|
config = lib.mkIf cfg {
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
};
|
|
};
|
|
}
|