summary refs log tree commit diff
path: root/extra/admin-api/flake.nix
blob: 7626bf6cfb114cf99daddf153d864f4fe70bbb1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  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;
    };
}