From 4a5e5feb732a48ffbf105c8404cc9cfaa246f2c3 Mon Sep 17 00:00:00 2001 From: Qubasa Date: Fri, 8 Dec 2023 19:30:04 +0100 Subject: [PATCH] clanCore: Fixed missing type null for clanIcon --- nixosModules/clanCore/flake-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixosModules/clanCore/flake-module.nix b/nixosModules/clanCore/flake-module.nix index 2d64a88c..4d6dbe2e 100644 --- a/nixosModules/clanCore/flake-module.nix +++ b/nixosModules/clanCore/flake-module.nix @@ -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 '';