aboutsummaryrefslogtreecommitdiff
path: root/hosts/tahoe/services.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/tahoe/services.nix')
-rw-r--r--hosts/tahoe/services.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/hosts/tahoe/services.nix b/hosts/tahoe/services.nix
index a04225e..0227f4c 100644
--- a/hosts/tahoe/services.nix
+++ b/hosts/tahoe/services.nix
@@ -1,8 +1,7 @@
-{ config, ... }:
+{ self, config, ... }:
let secrets = config.age.secrets;
in
{
-
# this unit is broken and useless. I don't know how to not install
# it, so let's mask it.
systemd.services.mdmonitor.enable = false;
@@ -14,12 +13,12 @@ in
};
navidrome = {
enable = true;
- vhostName = "music.fcuny.xyz";
+ vhostName = "music.${config.homelab.domain}";
musicFolder = "/data/fast/music";
};
unifi = {
enable = true;
- vhostName = "unifi.fcuny.xyz";
+ vhostName = "unifi.${config.homelab.domain}";
};
monitoring = {
@@ -33,7 +32,7 @@ in
};
grafana = {
enable = true;
- vhostName = "dash.fcuny.xyz";
+ vhostName = "dash.${config.homelab.domain}";
};
promtail.enable = true;
node-exporter.enable = true;