dns-config/flake.nix

12 lines
248 B
Nix
Raw Permalink Normal View History

2024-06-13 21:40:42 -07:00
{
description = "Nix configuration for dns-config";
inputs = {};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
{
packages.default = nixpkgs.legacyPackages.${system}.dnscontrol;
});
2024-06-13 21:40:42 -07:00
}