nixos/inadyn: fix defaultText

This commit is contained in:
Sandro 2025-02-24 14:40:05 +01:00 committed by GitHub
parent b07c16e4e9
commit 9d2e28a82e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -146,7 +146,7 @@ in
options = {
allow-ipv6 = lib.mkOption {
default = config.networking.enableIPv6;
defaultText = "`config.networking.enableIPv6`";
defaultText = lib.literalExpression "config.networking.enableIPv6";
description = "Whether to get IPv6 addresses from interfaces.";
type = bool;
};