mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2025-03-13 17:33:50 +00:00
fix selfprivacy.passthru: allow any types
This commit is contained in:
parent
29d1759186
commit
365e01a4e3
1 changed files with 2 additions and 2 deletions
|
@ -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 = { };
|
||||||
|
|
Loading…
Add table
Reference in a new issue