mirror of
https://github.com/nix-community/home-manager
synced 2024-11-26 22:50:39 +00:00
nixpkgs: fix semicolon and list layout in docs (#3813)
This commit is contained in:
parent
deb2f59b5c
commit
765e4007b6
1 changed files with 6 additions and 5 deletions
|
@ -79,14 +79,15 @@ in {
|
||||||
overlays = mkOption {
|
overlays = mkOption {
|
||||||
default = null;
|
default = null;
|
||||||
example = literalExpression ''
|
example = literalExpression ''
|
||||||
[ (self: super: {
|
[
|
||||||
openssh = super.openssh.override {
|
(final: prev: {
|
||||||
|
openssh = prev.openssh.override {
|
||||||
hpnSupport = true;
|
hpnSupport = true;
|
||||||
withKerberos = true;
|
withKerberos = true;
|
||||||
kerberos = self.libkrb5;
|
kerberos = final.libkrb5;
|
||||||
};
|
};
|
||||||
};
|
})
|
||||||
) ]
|
]
|
||||||
'';
|
'';
|
||||||
type = types.nullOr (types.listOf overlayType);
|
type = types.nullOr (types.listOf overlayType);
|
||||||
description = ''
|
description = ''
|
||||||
|
|
Loading…
Reference in a new issue