1
0
Fork 0
mirror of https://github.com/mdlayher/homelab.git synced 2024-12-14 11:47:32 +00:00

nixos/servnerr-4: nixfmt

This commit is contained in:
Matt Layher 2023-09-14 12:39:47 -04:00
parent 1d614cda34
commit a970821855
3 changed files with 6 additions and 4 deletions

View file

@ -121,7 +121,7 @@ in {
fwupd.enable = true;
prometheus.exporters.node = {
enable = true;
enabledCollectors = ["ethtool" "systemd"];
enabledCollectors = [ "ethtool" "systemd" ];
};
};

View file

@ -23,9 +23,10 @@ in {
};
# Tailscale readiness and DNS tweaks.
systemd.network.wait-online.ignoredInterfaces = ["ts0"];
systemd.network.wait-online.ignoredInterfaces = [ "ts0" ];
systemd.services.tailscaled.after = [ "network-online.target" "systemd-resolved.service" ];
systemd.services.tailscaled.after =
[ "network-online.target" "systemd-resolved.service" ];
systemd.network = {
enable = true;

View file

@ -101,7 +101,8 @@ in {
configurationPath = builtins.fetchurl {
url =
"https://raw.githubusercontent.com/prometheus/snmp_exporter/1964bce321942a73f994813103ed2ca2e432039d/snmp.yml";
sha256 = "sha256:0cshh89ijchi10iqijvmw473hhxf5cdrd1y0502wlwgw4glbis36";
sha256 =
"sha256:0cshh89ijchi10iqijvmw473hhxf5cdrd1y0502wlwgw4glbis36";
};
};
};