nixos/haveged: Fix incorrect unit configuration (documentation -> Documentation)

This commit is contained in:
Rickard Nilsson 2014-11-19 12:56:32 +01:00
parent 76f065a8de
commit 63d9366212

View File

@ -46,7 +46,7 @@ in
systemd.services.haveged =
{ description = "Entropy Harvesting Daemon";
unitConfig.documentation = "man:haveged(8)";
unitConfig.Documentation = "man:haveged(8)";
wantedBy = [ "multi-user.target" ];
path = [ pkgs.haveged ];
@ -60,4 +60,4 @@ in
};
}
}