0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

nixos/zeronet: fix settings option

This commit is contained in:
Ansho Rei 2021-07-02 10:47:18 +00:00
parent 752035e078
commit dffd88e516

View file

@ -20,7 +20,7 @@ in with lib; {
enable = mkEnableOption "zeronet";
settings = mkOption {
type = with types; attrsOf (oneOf [ str int bool (listOf str) ]);
type = with types; attrsOf (attrsOf (oneOf [ str int bool (listOf str) ]));
default = {};
example = literalExample "global.tor = enable;";