Merge pull request #60920 from andir/nixos-overlays-example-doc

nixos/misc/nixpkgs: fixed syntax error in overlays example
This commit is contained in:
Florian Klink 2019-05-04 23:28:12 +02:00 committed by GitHub
commit b53f54582d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,13 +127,14 @@ in
default = []; default = [];
example = literalExample example = literalExample
'' ''
[ (self: super: { [
(self: super: {
openssh = super.openssh.override { openssh = super.openssh.override {
hpnSupport = true; hpnSupport = true;
kerberos = self.libkrb5; kerberos = self.libkrb5;
}; };
}; })
) ] ]
''; '';
type = types.listOf overlayType; type = types.listOf overlayType;
description = '' description = ''