nixos/vaultwarden: Fix doubly-nested config value. Fixes evaluation

This commit is contained in:
Niklas Hambüchen 2023-09-18 15:03:27 +00:00
parent 5f34f2dd0a
commit c460434104

View file

@ -60,10 +60,8 @@ in {
config = mkOption {
type = attrsOf (nullOr (oneOf [ bool int str ]));
default = {
config = {
ROCKET_ADDRESS = "::1"; # default to localhost
ROCKET_PORT = 8222;
};
ROCKET_ADDRESS = "::1"; # default to localhost
ROCKET_PORT = 8222;
};
example = literalExpression ''
{