13 lines
269 B
Nix
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;
|
|
|
|
}
|