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

View file

@ -404,11 +404,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1711588700, "lastModified": 1716168343,
"narHash": "sha256-vBB5HoQVnA6c/UrDOhLXKAahEwSRccw2YXYHxD7qoi4=", "narHash": "sha256-82oT27w9smpItZ+PyN2C0PjIwZYbIocwXSM4u1igXuc=",
"owner": "nix-community", "owner": "nix-community",
"repo": "disko", "repo": "disko",
"rev": "502241afa3de2a24865ddcbe4c122f4546e32092", "rev": "6f01b9710bc4d3bf006eb8df928b4b15e0430901",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

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