nixos/modules/corenet.nix

13 lines
124 B
Nix
Raw Normal View History

{config, ...}:
{
services.coredns = {
enable = true;
config = ''
. {
whoami
}
'';
};
}