fix selfprivacy.passthru: allow any types

This commit is contained in:
Alexander Tomokhov 2025-02-03 00:56:12 +04:00
parent 29d1759186
commit 365e01a4e3

View file

@ -1,4 +1,4 @@
{ lib, pkgs, ... }: { lib, ... }:
with lib; with lib;
{ {
@ -144,7 +144,7 @@ with lib;
################ ################
passthru = mkOption { passthru = mkOption {
type = types.submodule { type = types.submodule {
freeformType = (pkgs.formats.json { }).type; freeformType = with types; lazyAttrsOf (uniq unspecified);
options = { }; options = { };
}; };
default = { }; default = { };