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 = [];
example = literalExample
''
[ (self: super: {
[
(self: super: {
openssh = super.openssh.override {
hpnSupport = true;
kerberos = self.libkrb5;
};
};
) ]
})
]
'';
type = types.listOf overlayType;
description = ''