Files
nix/modules/nixos/network.nix
2024-12-31 13:45:35 +02:00

13 lines
269 B
Nix

{ config, pkgs, ... }:
{
# using cloudflare dns instead of apollo.lv (which might be spying)
networking.nameservers = [ "1.1.1.1" "1.0.0.1" ];
networking.hostName = "ocbwoy3-pc";
networking.networkmanager.enable = true;
networking.resolvconf.enable = false;
}