diff --git a/build/package/nix/tgstation-server.nix b/build/package/nix/tgstation-server.nix index 54978adb3f..1618f11750 100644 --- a/build/package/nix/tgstation-server.nix +++ b/build/package/nix/tgstation-server.nix @@ -1,6 +1,7 @@ inputs@{ config, lib, + systemdUtils, nixpkgs, pkgs, writeShellScriptBin, @@ -99,6 +100,14 @@ in Environment file as defined in {manpage}`systemd.exec(5)` ''; }; + + wants = lib.mkOption { + type = lib.types.listOf systemdUtils.lib.unitNameType; + default = []; + description = '' + Start the specified units when this unit is started. + ''; + } }; };