clanCore: Fixed missing type null for clanIcon
All checks were successful
checks-impure / test (pull_request) Successful in 1m9s
checks / test (pull_request) Successful in 1m56s

This commit is contained in:
Luis Hebendanz 2023-12-08 19:30:04 +01:00
parent d6052c3497
commit 4a5e5feb73

View File

@ -33,7 +33,7 @@
'';
};
clanIcon = lib.mkOption {
type = lib.types.either lib.types.path lib.types.null;
type = lib.types.nullOr lib.types.path;
description = ''
the location of the clan icon
'';