21 lines
388 B
Nix
Executable File
21 lines
388 B
Nix
Executable File
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
options = {
|
|
movOpts.softwareCfg.steamConfig.enable = lib.mkEnableOption "enables steam configuration";
|
|
};
|
|
config = lib.mkIf config.movOpts.softwareCfg.steamConfig.enable {
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
extraCompatPackages = with pkgs; [
|
|
proton-ge-bin
|
|
];
|
|
};
|
|
};
|
|
}
|