summary refs log tree commit diff
path: root/modules/software-templates/spacebar-server-ts/module.nix
blob: 768b423309ebde2fe3dd72e1a7686c7e91b2e1cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ lib, ... }:
{
  options.services.spacebar-server-ts = {
    enable = lib.mkEnableOption "spacebar-server-ts";
    package = lib.mkOption {
      type = lib.types.package;
      default = null;
      description = "The package to use for the spacebar-server-ts service";
    };
  };
}