Fix tailscale option.

This commit is contained in:
2024-09-25 10:13:13 +01:00
parent cdc8f49013
commit e460d69ebb

View File

@@ -7,9 +7,10 @@ in
imports = [ ./tailscale_lib.nix ];
options.custom.tailscale = {
enable = mkEnableOption {
description = "Enable Tailscale";
enable = mkOption {
type = lib.types.bool;
default = true;
description = "Whether to enable Tailscale";
};
};