https://github.com/andreoss/dnscrypt-nixos-module
https://github.com/andreoss/dnscrypt-nixos-module
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andreoss/dnscrypt-nixos-module
- Owner: andreoss
- Created: 2023-03-16T03:02:16.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T13:30:24.000Z (over 1 year ago)
- Last Synced: 2024-10-29T16:06:49.389Z (over 1 year ago)
- Language: Nix
- Size: 298 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dnscrypt-nixos-module
NixOS module to enable DNS configuration with unbound and https://github.com/DNSCrypt/dnscrypt-proxy
## Installation
### Add this repo as an input to `flake.nix`
```
inputs = {
...
dnscrypt-module.url = "github:andreoss/dnscrypt-nixos-module";
...
};
```
### Add the module to the module list
```
modules = [ inputs.dnscrypt-module.nixosModules.default ... ];
```
### Enable `network.dns-crypt` option
```
networking = {
dns-crypt.enable = true;
};
```