16 lines
282 B
Nix
16 lines
282 B
Nix
{ config, ... }: {
|
|
networking = {
|
|
#nameservers = [ "8.8.8.8" "8.8.4.4" ];
|
|
|
|
wg-quick.interfaces.wg0.configFile = "/persist/vpn.conf";
|
|
|
|
networkmanager = {
|
|
enable = true;
|
|
#dns = "none";
|
|
};
|
|
|
|
extraHosts = ''
|
|
192.168.100.16 hyacinth
|
|
'';
|
|
};
|
|
}
|