diff options
author | lassulus <git@lassul.us> | 2023-09-04 10:56:33 +0200 |
---|---|---|
committer | lassulus <git@lassul.us> | 2023-09-04 10:56:33 +0200 |
commit | df62e24584a38d680018bfcab18821d12b0b1d13 (patch) | |
tree | 84906536fcdaf4857ed6b491dd50aad15106ea70 /krebs/3modules/ssh.nix | |
parent | 591680e58f94e2fc6a65378c0baf190c2f2a5b68 (diff) | |
parent | da3c1f05f595ac6919f26e994094d5513936a06e (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'krebs/3modules/ssh.nix')
-rw-r--r-- | krebs/3modules/ssh.nix | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/krebs/3modules/ssh.nix b/krebs/3modules/ssh.nix index 58f3a3c10..aba825c29 100644 --- a/krebs/3modules/ssh.nix +++ b/krebs/3modules/ssh.nix @@ -4,32 +4,9 @@ let cfg = config.krebs; out = { - options.krebs = api; config = lib.mkIf cfg.enable imp; }; - api = { - zone-head-config = mkOption { - type = with types; attrsOf str; - description = '' - The zone configuration head which is being used to create the - zone files. The string for each key is pre-pended to the zone file. - ''; - # TODO: configure the default somewhere else, - # maybe use krebs.dns.providers - default = { - - # github.io -> 192.30.252.154 - "krebsco.de" = '' - $TTL 86400 - @ IN SOA dns19.ovh.net. tech.ovh.net. (2015052000 86400 3600 3600000 86400) - IN NS ns19.ovh.net. - IN NS dns19.ovh.net. - ''; - }; - }; - }; - imp = lib.mkMerge [ { services.openssh.hostKeys = |