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
@ -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 = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user