mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-02 05:05:43 +01:00
17 lines
263 B
Nix
17 lines
263 B
Nix
{
|
|
networking = {
|
|
hostName = "nixos";
|
|
|
|
networkmanager = {
|
|
enable = true;
|
|
dns = "none";
|
|
wifi.macAddress = "random";
|
|
ethernet.macAddress = "random";
|
|
};
|
|
|
|
useHostResolvConf = true;
|
|
};
|
|
|
|
services.resolved.llmnr = "false";
|
|
}
|