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

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}";
  };

}