Install Unbound DNS server

This commit is contained in:
NullBite 2024-03-19 23:55:58 -04:00
parent ad3ada835a
commit 4e7e35b3e9
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
2 changed files with 8 additions and 0 deletions

View File

@ -12,6 +12,7 @@
./hardware-configuration.nix
# Encryption
./luks.nix
./unbound.nix
];
config = {

View File

@ -0,0 +1,7 @@
{ pkgs, lib, config, ... }:
{
config = {
networking.networkmanager.dns = "none";
services.unbound.enable = true;
};
}