Skip to content

Commit 723093b

Browse files
authored
Merge pull request #1678 from NixOS/token-list-path
queue-runner-module: fix tokenListPath type
2 parents 1f1fc74 + 6268a7d commit 723093b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nixos-modules/queue-runner-module.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ in
123123
};
124124
tokenListPath = lib.mkOption {
125125
description = "Path to a list of allowed authentication tokens.";
126-
type = lib.types.nullOr lib.types.path;
126+
type = lib.types.nullOr (lib.types.listOf lib.types.path);
127127
default = null;
128128
};
129129
enableFodChecker = lib.mkOption {

0 commit comments

Comments
 (0)