fruitbasket/options/default.nix

8 lines
200 B
Nix
Raw Normal View History

{ lib, ... }: with lib; {
options.networking.rDNS = mkOption {
2023-09-01 10:42:22 +02:00
type = types.str;
default = networking.fqdn;
description = "The reverse dns record known to be set for this host.";
};
2022-04-19 16:39:09 +02:00
}