nicks-nix-config/hosts/Alaska/dnsmasq.nix

15 lines
214 B
Nix

{ config, lib, pkgs, ... }:
{
services.dnsmasq = {
enable = true;
servers = [
"1.1.1.1"
"1.0.0.1"
"8.8.8.8"
];
};
networking.extraHosts = ''
10.0.0.114 NicksDesktop
'';
}