Compare commits

...

2 Commits

Author SHA1 Message Date
97d08df97a
Install dig and dig.dnsutils 2024-03-19 23:56:51 -04:00
4e7e35b3e9
Install Unbound DNS server 2024-03-19 23:55:58 -04:00
3 changed files with 10 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;
};
}

View File

@ -78,6 +78,8 @@ in
socat
nmap
hping
dig
dig.dnsutils
# system utilities
htop