Compare commits

..

No commits in common. "e1803a4edd8b427ff312e86cace79574c6b504d9" and "e8e0758417aa4542b85bd4b66245e09d6f4d5ca2" have entirely different histories.

2 changed files with 13 additions and 4 deletions

View File

@ -18,8 +18,7 @@
image = image =
"evanbuss/openbooks@sha256:16609c3da954715f8f98b5de6c838146914ae700b2a700b4d9aad8b23c9217da"; "evanbuss/openbooks@sha256:16609c3da954715f8f98b5de6c838146914ae700b2a700b4d9aad8b23c9217da";
ports = [ "127.0.0.1:9000:80" ]; ports = [ "127.0.0.1:9000:80" ];
cmd = cmd = [ "--name" "bradar" "--searchbot" "searchook" "--persist" ];
[ "--name" "john-khrafosta" "--searchbot" "searchook" "--persist" ];
}; };
# Prometheus MQTT integration # Prometheus MQTT integration
mqtt2prometheus = { mqtt2prometheus = {

View File

@ -1,6 +1,16 @@
{ config, pkgs, lib, ... }: { config, pkgs, lib, ... }:
let wireguard_port = 1194; let
wireguard_port = 1194;
latest-ddclient = pkgs.ddclient.overrideAttrs (old: rec {
src = pkgs.fetchFromGitHub {
owner = "ddclient";
repo = "ddclient";
rev = "3136871720a3c2abf730c9485edc351563765d0e";
sha256 = "sha256-qb1DF0DaVbPgQokGx0t7VVk3pe3KuA8mNRPrBMzhWvU=";
};
});
in { in {
# Enable systemd-networkd # Enable systemd-networkd
@ -28,11 +38,11 @@ in {
enable = true; enable = true;
quiet = true; quiet = true;
use = "web, web=freedns"; use = "web, web=freedns";
package = latest-ddclient;
interval = "30min"; interval = "30min";
protocol = "duckdns"; protocol = "duckdns";
domains = [ "coolneng.duckdns.org" ]; domains = [ "coolneng.duckdns.org" ];
passwordFile = config.age.secrets.ddclient.path; passwordFile = config.age.secrets.ddclient.path;
extraConfig = "";
}; };
# Firewall configuration # Firewall configuration