path:
/README.md
5.93 KB | plain
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<!--
SPDX-FileCopyrightText: 2021 Kirill Elagin <https://kir.elagin.me/>
SPDX-License-Identifier: MPL-2.0 or MIT
-->
dns.nix
========
_A Nix DSL for defining DNS zones_
This repository provides:
1. NixOS-style module definitions that describe DNS zones and records in them.
2. A DSL that simplifies describing your DNS zones.
## An example of a zone
```nix
with dns.lib.combinators; {
SOA = { # Human readable names for fields
nameServer = "ns.test.com.";
adminEmail = "admin@test.com"; # Email address with a real `@`!
serial = 2019030800;
# Sane defaults for the remaining ones
};
NS = [ # A zone consists of lists of records grouped by type
"ns.test.com."
"ns2.test.com."
];
A = [
{ address = "203.0.113.1"; } # Generic A record
{ address = "203.0.113.2"; ttl = 60 * 60; } # Generic A with TTL
(a "203.0.113.3") # Simple a record created with the `a` combinator
(ttl (60 * 60) (a "203.0.113.4")) # Equivalent to the second one
];
AAAA = [
"4321:0:1:2:3:4:567:89ab" # For simple records you can use a plain string
];
CAA = letsEncrypt "admin@example.com"; # Common template combinators included
MX = mx.google; # G Suite mail servers;
TXT = [
(with spf; strict [google]) # SPF: only allow gmail
];
subdomains = {
www.A = [ "203.0.114.1" ];
staging = delegateTo [ # Another shortcut combinator
"ns1.another.com."
"ns2.another.com."
];
};
}
```
You can build an example zone in `example.nix` by running
`nix build -f ./example.nix` or `nix-build ./example.nix`.
## Why?
* The DNS zone syntax is crazy. Nix is nice and structured.
* Having the full power of a Turing-complete functional language
(`let`, `if`, `map` and other things you are used to).
* All kinds of shortcuts and useful combinators.
* Strong typing provded by the NixOS module system.
* Modularity: records defined in different modules get magically merged.
## Use
### Importing
There are two ways to import `dns.nix`.
#### As a flake
Add it as an input to your flake:
```nix
# flake.nix
{
inputs = {
# ...
dns = {
url = "github:kirelagin/dns.nix";
inputs.nixpkgs.follows = "nixpkgs"; # (optionally)
};
};
outputs = { self, nixpkgs, dns }: {
# Most functions from `dns.nix` are available in `dns.lib`.
# Functions that require `stdenv` (e.g. `writeZone`) are in
# `dns.util.<system>`.
# ...
};
}
```
#### Importing directly (legacy)
Always get the latest version from GitHub:
```nix
let
dns = import (builtins.fetchTarball "https://github.com/kirelagin/dns.nix/archive/master.zip");
in {
# ...
}
```
To make your setup more reproducible, you should pin the version used by specifying
a commit hash or using a submodule. This is all a little clumsy and nowadays it
is probably best to simply switch to flakes.
### In your NixOS configuration
_There is a chance that in the future we will either integrate this into
existing NixOS modules for different DNS servers, or will provide a separate
NixOS module that will configure DNS servers for you._
```nix
# example.com.nix
{ dns }:
with dns.lib.combinators;
{
SOA = {
nameServer = "ns1";
adminEmail = "admin@example.com";
serial = 2019030800;
};
NS = [
"ns1.example.com."
"ns2.example.com."
];
A = [ "203.0.113.1" ];
AAAA = [ "4321:0:1:2:3:4:567:89ab" ];
subdomains = rec {
foobar = host "203.0.113.2" "4321:0:1:2:3:4:567:89bb";
ns1 = foobar;
ns2 = host "203.0.113.3" "4321:0:1:2:3:4:567:89cc";
};
}
```
These example assume `nsd`, but it should be pretty much the same for other daemons.
When your system is defined as a flake:
```nix
{
# Add `dns.nix` to `inputs` (see above).
# ...
# In `outputs`:
nixosConfigurations.yourSystem = nixpkgs.lib.nixosSystem {
# ...
services.nsd = {
enable = true;
zones = {
"example.com" = {
# provideXFR = [ ... ];
# notify = [ ... ];
data = dns.lib.toString "example.com" (import ./example.com.nix { inherit dns; });
};
};
};
};
}
```
If your system configuration is not a flake, everything will be essentially
the same, you will just import it differently.
### In modules you develop
`dns.lib` provides the `types` attribute, which contains DNS-related
types to be used in the NixOS module system. Using them you can define
an option in your module such as this one:
```nix
# dns = ...
{
yourModule = {
options = {
# <...>
zones = lib.mkOption {
type = lib.types.attrsOf dns.lib.types.zone;
description = "DNS zones";
};
};
config = {
# You can call `toString` on a zone from the `zones` attrset and get
# a string suitable, for example, for writing with `writeTextFile`.
};
};
}
```
As another example, take a look at the `evalZone` function in `dns/default.nix`,
which takes a name for a zone and a zone definition, defines a “fake” module
similar to the one above, and then evaluates it.
`dns.utils` provides `writeZone`, which is a helper function that additionally
calls `toString` and writes the resulting string to a file.
## Contributing
If you encounter any issues when using this library or have improvement ideas,
please open an issue on GitHub.
You are also very welcome to submit pull requests.
Please, note that in this repository we are making effort to track
the authorship information for all contributions.
In particular, we are following the [REUSE] practices.
The tl;dr is: please, add information about yourself to the headers of
each of the files that you edited if your change was _substantial_
(you get to judge what is substantial and what is not).
[REUSE]: https://reuse.software/
## License
[MPL-2.0] © [Kirill Elagin] and contributors (see headers in the files).
Additionally, all code in this repository is dual-licensed under the MIT license
for direct compatibility with nixpkgs.
[MPL-2.0]: https://spdx.org/licenses/MPL-2.0.html
[Kirill Elagin]: https://kir.elagin.me/