10 lines
150 B
Nix
10 lines
150 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: {
|
||
|
config = lib.mkIf (!config.local.profiles.server.enable) {
|
||
|
networking.nameservers = ["1.1.1.1" "1.0.0.1"];
|
||
|
};
|
||
|
}
|