mirror of
https://github.com/spacebarchat/server.git
synced 2026-03-29 05:29:53 +00:00
19 lines
337 B
Nix
19 lines
337 B
Nix
{
|
|
description = "Spacebar server, written in Typescript.";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
self,
|
|
nixpkgs,
|
|
flake-utils,
|
|
}:
|
|
import ./outputs.nix {
|
|
inherit self nixpkgs flake-utils;
|
|
};
|
|
}
|