mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
15 lines
214 B
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
|
|
'';
|
|
}
|