diff options
Diffstat (limited to '')
-rw-r--r-- | flora/services/pleroma.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/flora/services/pleroma.nix b/flora/services/pleroma.nix index e0f60ed..21e4228 100644 --- a/flora/services/pleroma.nix +++ b/flora/services/pleroma.nix @@ -132,6 +132,15 @@ in }; networking.firewall.allowedTCPPorts = [ 4000 10022 ]; + + services.coredns = { + enable = true; + config = '' + .:53 { + forward . 1.1.1.1 + } + ''; + }; }; }; |