18 lines
282 B
Nix
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;
|
|
};
|
|
}
|