options: move to tree root

This commit is contained in:
Rouven Seifert 2024-03-12 12:06:21 +01:00
parent 01bcc9ecad
commit 527651706e
Signed by untrusted user: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
2 changed files with 1 additions and 1 deletions

7
options/default.nix Normal file
View file

@ -0,0 +1,7 @@
{ lib, ... }: with lib; {
options.networking.rDNS = mkOption {
type = types.str;
default = networking.fqdn;
description = "The reverse dns record known to be set for this host.";
};
}