summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/iodined.nix
blob: d57c91ce893253ebb028f1c0b66cfb3ff000a951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, config, ... }:

let
  # TODO: make this a parameter
  domain = "io.krebsco.de";
  pw = import <secrets/iodinepw.nix>;
in {

  services.iodined = {
    enable = true;
    domain = domain;
    ip = "172.16.10.1/24";
    extraConfig = "-P ${pw} -l ${config.krebs.build.host.nets.internet.ip4.addr}";
  };

}