Merge pull request #60920 from andir/nixos-overlays-example-doc
nixos/misc/nixpkgs: fixed syntax error in overlays example
This commit is contained in:
commit
b53f54582d
1 changed files with 4 additions and 3 deletions
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue