1
Fork 0

Update disko + fix types.string usage

This commit is contained in:
prescientmoon 2024-05-21 01:56:53 +02:00
parent 118baa7be3
commit 61259e3a7f
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4
2 changed files with 5 additions and 5 deletions
modules/nixos

View file

@ -4,7 +4,7 @@ in
{
options.satellite.cloudflared = {
tunnel = lib.mkOption {
type = lib.types.string;
type = lib.types.str;
description = "Cloudflare tunnel id to use for the `satellite.cloudflared.targets` helper";
};
@ -20,7 +20,7 @@ in
host = lib.mkOption {
default = name;
type = lib.types.string;
type = lib.types.str;
description = "Host to direct traffic from";
};
};