fix: arr options when not used

This commit is contained in:
Noah Masur 2023-03-12 17:07:54 -04:00
parent e6dbed2e17
commit 5859377802

View File

@ -1,10 +1,8 @@
{ config, lib, ... }:
{
{ config, lib, ... }: {
options = {
arrServer = lib.mkOption {
type = lib.types.str;
type = lib.types.nullOr lib.types.str;
description = "Hostname for arr services";
default = null;
};