feat(nixos): add Satisfactory Dedicated Server module
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m27s

This commit is contained in:
uttarayan21
2025-08-26 23:39:56 +05:30
parent 40bdd383a0
commit 429cbb2178
6 changed files with 114 additions and 3 deletions

View File

@@ -11,13 +11,13 @@
./immich.nix
./llama.nix
./lldap.nix
./minecraft.nix
./nextcloud.nix
./prowlarr.nix
./resolved.nix
./searxng.nix
./sigmabot.nix
./tailscale.nix
./games
# ./paperless.nix
];
services = {

View File

@@ -0,0 +1,6 @@
{...}: {
imports = [
./minecraft.nix
./satisfactory.nix
];
}

View File

@@ -0,0 +1,9 @@
{...}: {
imports = [
../../../../modules/nixos/satisfactory.nix
];
services.satisfactory = {
enable = true;
maxPlayers = 4;
};
}