mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-07-17 02:52:55 +01:00
15 lines
351 B
Nix
15 lines
351 B
Nix
{
|
|
description = "tgstation-server";
|
|
|
|
inputs = {};
|
|
|
|
outputs = { nixpkgs, ... }: {
|
|
nixosModules = {
|
|
default = { ... }: {
|
|
imports = [ ./tgstation-server.nix ];
|
|
};
|
|
};
|
|
checks.x86_64-linux.package-build = nixpkgs.legacyPackages.x86_64-linux.callPackage ./package.nix { };
|
|
};
|
|
}
|