Files
nix/modules/nixos/network.nix

12 lines
230 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;
}