Forgot mkOption...

This commit is contained in:
niten 2023-09-27 12:08:17 -07:00
parent dd73b0d505
commit 811f1de248
1 changed files with 3 additions and 5 deletions

View File

@ -38,11 +38,9 @@ in {
};
};
redis = {
password-file = {
type = str;
description = "Password with which to connect to Redis.";
};
redis.password-file = mkOption {
type = str;
description = "Password with which to connect to Redis.";
};
};