tangled
alpha
login
or
join now
wiro.world
/
dotfiles
2
fork
atom
yep, more dotfiles
2
fork
atom
overview
issues
1
pulls
1
pipelines
fix(server): add hostname for grafana service
wiro.world
11 months ago
3430111a
ccd3ca2d
+4
-1
1 changed file
expand all
collapse all
unified
split
nixos
profiles
server.nix
+4
-1
nixos/profiles/server.nix
···
154
154
services.grafana = {
155
155
enable = true;
156
156
157
157
-
settings.server.http_port = grafana-port;
157
157
+
settings.server = {
158
158
+
http_port = grafana-port;
159
159
+
domain = grafana-hostname;
160
160
+
};
158
161
};
159
162
160
163
services.prometheus = {