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

16 lines
214 B
Nix
Raw Normal View History

2023-03-31 18:12:19 -07:00
{ 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
'';
}