-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflake.nix
More file actions
136 lines (124 loc) · 3.93 KB
/
flake.nix
File metadata and controls
136 lines (124 loc) · 3.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# SPDX-FileCopyrightText: 2023 OPAL-RT Germany GmbH
# SPDX-License-Identifier: Apache-2.0
{
description = "a tool for connecting real-time power grid simulation equipment";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}@inputs:
{
nixosModules.default =
{
pkgs,
config,
lib,
...
}:
let
cfg = config.services.villas-signaling;
in
{
options.services.villas-signaling = {
enable = lib.mkEnableOption "VILLASnode WebRTC signaling server";
address = lib.mkOption {
description = "HTTP service address";
default = ":8080";
type = lib.types.str;
};
level = lib.mkOption {
description = "The log level";
default = "debug";
type = lib.types.str;
};
relays = lib.mkOption {
description = "A TURN/STUN relay which is signalled to each connection";
type = lib.types.listOf lib.types.str;
default = [ ];
};
api = {
username = lib.mkOption {
description = "Username for API endpoint";
default = "admin";
type = lib.types.str;
};
password = lib.mkOption {
description = "Password for API endpoint";
type = lib.types.str;
default = "";
};
token = lib.mkOption {
description = "Bearer token for authentication";
type = lib.types.str;
default = "";
};
};
};
config = {
nixpkgs.overlays = [
self.overlays.default
];
systemd.services.villas-signaling-server = lib.mkIf cfg.enable {
enable = true;
description = "VILLASnode WebRTC Signaling Server";
serviceConfig = {
Type = "simple";
ExecStart =
let
args = lib.cli.toGNUCommandLine { mkOptionName = k: "-${k}"; } {
inherit (cfg) address level;
relay = cfg.relays;
api-username = if cfg.api.username != "" then cfg.api.username else null;
api-password = if cfg.api.password != "" then cfg.api.password else null;
api-token = if cfg.api.token != "" then cfg.api.token else null;
};
argsStr = builtins.concatStringsSep " " args;
in
"${pkgs.villas-signaling}/bin/server ${argsStr}";
};
wantedBy = [ "multi-user.target" ];
};
};
};
overlays.default = final: prev: { villas-signaling = final.callPackage ./default.nix { }; };
}
// flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ self.overlays.default ];
};
in
{
formatter = pkgs.nixfmt-rfc-style;
apps =
let
inherit (self.packages.${system}) server;
in
{
turn-api-auth = {
type = "app";
program = "${pkgs.villas-signaling}/bin/turn-api-auth";
};
};
packages = rec {
default = pkgs.villas-signaling;
};
devShells = {
default = pkgs.mkShell { inputsFrom = [ pkgs.villas-signaling ]; };
};
checks = {
fmt = pkgs.runCommand "check-fmt" { } ''
cd ${self}
${self.formatter.${system}}/bin/nixfmt --check . 2> $out
'';
};
}
);
}