Files
PVV-DNS/zoneConfig.nix
2025-02-17 21:45:17 +01:00

15 lines
148 B
Nix

{
lib,
stdenvNoCC,
dns,
}:
stdenvNoCC.mkDerivation {
name = "zoneConfig";
dontUnpack = true;
installPhase = ''
mkdir $out
'';
}