Files
nix/modules/nixos/network.nix
OCbwoy3 88a7722293 a
2024-12-15 01:23:48 +02:00

12 lines
225 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 = "nixos";
networking.networkmanager.enable = true;
}