1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-04-08 10:41:12 +00:00

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

@ -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;
};