13 lines
124 B
Nix
13 lines
124 B
Nix
{config, ...}:
|
|
|
|
{
|
|
services.coredns = {
|
|
enable = true;
|
|
config = ''
|
|
. {
|
|
whoami
|
|
}
|
|
'';
|
|
};
|
|
}
|