remove arma-reforger-tofu oci container config cause we got steamcmd working BITSHIScd Nixos-Configurationcd Nixos-Configurationcd Nixos-Configurationcd Nixos-Configuration
Some checks failed
/ check (push) Failing after 53s
/ deploy (push) Has been skipped

This commit is contained in:
steven carpenter 2025-07-01 00:30:58 -04:00
parent 6225e23286
commit 7844d688ff

View file

@ -2,6 +2,7 @@
flake, flake,
modulesPath, modulesPath,
config, config,
pkgs,
... ...
}: }:
@ -33,39 +34,6 @@ in
"d /var/lib/steam/reforger/workshop/ 0755 steam steam -" "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 = { deploy = {
enable = false; enable = false;
}; };
@ -77,7 +45,8 @@ in
}; };
}; };
environment.systemPackages = [ environment.systemPackages = [
steamcmd pkgs.steamcmd
pkgs.curl
]; ];
system.stateVersion = "25.05"; system.stateVersion = "25.05";
} }