mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-23 05:09:32 -08:00
16 lines
214 B
Nix
16 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
|
||
|
'';
|
||
|
}
|