cottand / leng

:zap: fast dns server, built to block advertisements and malware servers
https://cottand.github.io/leng/
MIT License
64 stars 68 forks source link

Make NixOS module #29

Closed cottand closed 11 months ago

cottand commented 1 year ago

Following #28 , NixOS users can easily install the package, but having a NixOS module would make configuration much easier.

To start, it could look something like:

services.grimd = {
    enable = true;
    configText = ''
bind = "0.0.0.0:53"
[DnsOverHttpServer]
    enabled = true
    bind = "0.0.0.0:80"
    timeoutMs = 5000
'';
};