From 62100c9265a4de389d1ea8060cbddddacde161a7 Mon Sep 17 00:00:00 2001 From: Leonardo Santiago Date: Thu, 12 Sep 2024 21:44:46 -0300 Subject: split users/leonardo.nix into modules with options in order to be able to deploy just a few of those to iori.nix --- modules/games.nix | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 modules/games.nix (limited to 'modules/games.nix') diff --git a/modules/games.nix b/modules/games.nix new file mode 100644 index 0000000..d47254d --- /dev/null +++ b/modules/games.nix @@ -0,0 +1,27 @@ +{ config, lib, pkgs, ... }: let + cfg = config.santi-modules; +in with lib; { + options.santi-modules = { + games.enable = mkEnableOption "Enable all games"; + steam.enable = mkOption { + description = "Enable steam installation"; + default = cfg.games.enable; + type = types.bool; + }; + minecraft.enable = mkOption { + description = "Enable minecraft launcher"; + default = cfg.games.enable; + type = types.bool; + }; + }; + config = { + programs.steam = mkIf cfg.steam.enable { + enable = true; + remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play + dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server + }; + environment.systemPackages = mkIf cfg.minecraft.enable [ + pkgs.prismlauncher + ]; + }; +} -- cgit v1.2.3