Files
nix/hosts/server/modules/spacebar.nix
2025-12-21 23:31:03 +02:00

18 lines
282 B
Nix

{
config,
lib,
pkgs,
inputs,
...
}:
{
imports = [ inputs.spacebar.nixosModules.default ];
services.spacebarchat-server = {
enable = true;
package = inputs.spacebar.packages.${pkgs.stdenv.hostPlatform.system}.default;
extraEnvironment.PORT = 4067;
};
}