From 7844d688ff861b1ea62e35441e9a63ae7b5583a8 Mon Sep 17 00:00:00 2001 From: steven carpenter Date: Tue, 1 Jul 2025 00:30:58 -0400 Subject: [PATCH] remove arma-reforger-tofu oci container config cause we got steamcmd working BITSHIScd Nixos-Configurationcd Nixos-Configurationcd Nixos-Configurationcd Nixos-Configuration --- .../nixos/arma-reforger-tofu/default.nix | 37 ++----------------- 1 file changed, 3 insertions(+), 34 deletions(-) diff --git a/configurations/nixos/arma-reforger-tofu/default.nix b/configurations/nixos/arma-reforger-tofu/default.nix index a00b942..1112bf3 100644 --- a/configurations/nixos/arma-reforger-tofu/default.nix +++ b/configurations/nixos/arma-reforger-tofu/default.nix @@ -2,6 +2,7 @@ flake, modulesPath, config, + pkgs, ... }: @@ -33,39 +34,6 @@ in "d /var/lib/steam/reforger/workshop/ 0755 steam steam -" ]; - services.yggdrasil.persistentKeys = false; - - - - # read more options here - # https://search.nixos.org/options?channel=25.05&show=virtualisation.oci-containers.containers.%3Cname%3E.workdir&from=0&size=50&sort=relevance&type=packages&query=oci+containers - # https://wiki.nixos.org/wiki/NixOS_Containers - #virtualisation = { - # podman.enable = true; - # oci-containers.containers = { - # arma = { - # image = "ghcr.io/acemod/arma-reforger:latest"; - # ports = [ - # "2001:2001/udp" - # "17777:17777/udp" - # "19999:19999/udp" - # ]; - # volumes = [ - # # make sure this is a path that exists - # # my recomendation is to use /var/lib/reforger - # # be sure to have that directory created - # "/var/lib/reforger/configs:/reforger/Configs" - # "/var/lib/reforger/profile:/home/profile" - # "/var/lib/reforger/workshop:/reforger/workshop" - # ]; - # environment = { - # SERVER_PUBLIC_ADDRESS = "68.36.109.246"; - # GAME_NAME = "[NA] SK Development Studios | GROUND ZERO MODERN CONFLICT"; - # }; - # }; - # }; - #}; - deploy = { enable = false; }; @@ -77,7 +45,8 @@ in }; }; environment.systemPackages = [ - steamcmd + pkgs.steamcmd + pkgs.curl ]; system.stateVersion = "25.05"; }