aboutsummaryrefslogtreecommitdiff
path: root/hosts/tahoe/services.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-12-08 09:00:57 -0800
committerFranck Cuny <franck@fcuny.net>2023-12-08 09:00:57 -0800
commit7ff5c2e346a8efeba0c27f473271d8298a1266c2 (patch)
treea536441a137be3d6122b4d8a247db76f9cd8d12a /hosts/tahoe/services.nix
parentbuild(deps): bump cachix/install-nix-action from 23 to 24 (diff)
downloadinfra-7ff5c2e346a8efeba0c27f473271d8298a1266c2.tar.gz
delete configuration for old machines
These machines are gone, no need to keep the configuration around.
Diffstat (limited to '')
-rw-r--r--hosts/tahoe/services.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/hosts/tahoe/services.nix b/hosts/tahoe/services.nix
deleted file mode 100644
index 1159cb1..0000000
--- a/hosts/tahoe/services.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ 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;
-
- my.services = {
- monitoring = {
- prometheus = {
- enable = true;
- listenAddress = "192.168.6.40";
- };
- grafana = {
- enable = true;
- vhostName = "dash.${config.homelab.domain}";
- };
- };
- };
-}