16 lines
386 B
Nix
Executable File
16 lines
386 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
|
|
];
|
|
};
|
|
};
|
|
}
|