nixos/common/networking-home/default.nix

10 lines
154 B
Nix
Raw Normal View History

2020-05-12 08:53:09 +00:00
{config, ...}:
{
networking = {
# PiHole
nameservers = ["192.168.178.151"];
2020-05-12 08:53:09 +00:00
networkmanager.insertNameservers = ["192.168.178.151"];
};
}