feat: netbird
This commit is contained in:
parent
53b83b3471
commit
ea118b7995
64 changed files with 1088 additions and 665 deletions
17
system/modules/systemd-resolv.nix
Normal file
17
system/modules/systemd-resolv.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ ... }:
|
||||
{
|
||||
networking.nameservers = [
|
||||
"1.1.1.1#one.one.one.one"
|
||||
"1.0.0.1#one.one.one.one"
|
||||
];
|
||||
|
||||
services.resolved = {
|
||||
enable = true;
|
||||
llmnr = "false";
|
||||
fallbackDns = [
|
||||
"1.1.1.1#one.one.one.one"
|
||||
"1.0.0.1#one.one.one.one"
|
||||
];
|
||||
domains = [ "~." ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue