Files
nix/modules/nixos/network.nix
Kris c87bd55ce3 a
2026-03-28 18:31:43 +02:00

14 lines
194 B
Nix

{ config, pkgs, ... }:
{
#! Disable default nameservers to prevent ISP espionage
networking.nameservers = [
"1.1.1.1"
"1.0.0.1"
];
networking.networkmanager.enable = true;
}