nixpkgs: fix semicolon and list layout in docs (#3813)

This commit is contained in:
Tim 2023-03-28 12:46:08 +02:00 committed by GitHub
parent deb2f59b5c
commit 765e4007b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 5 deletions

View File

@ -79,14 +79,15 @@ in {
overlays = mkOption {
default = null;
example = literalExpression ''
[ (self: super: {
openssh = super.openssh.override {
[
(final: prev: {
openssh = prev.openssh.override {
hpnSupport = true;
withKerberos = true;
kerberos = self.libkrb5;
kerberos = final.libkrb5;
};
};
) ]
})
]
'';
type = types.nullOr (types.listOf overlayType);
description = ''