acme.nix: Fix unit descriptions

Unit descriptions should be capitalized, and timer units don't have
to describe that they're timers.

+2 -2
+2 -2
nixos/modules/security/acme.nix
··· 152 in nameValuePair 153 ("acme-${cert}") 154 ({ 155 - description = "ACME cert renewal for ${cert} using simp_le"; 156 after = [ "network.target" ]; 157 serviceConfig = { 158 Type = "oneshot"; ··· 192 systemd.timers = flip mapAttrs' cfg.certs (cert: data: nameValuePair 193 ("acme-${cert}") 194 ({ 195 - description = "timer for ACME cert renewal of ${cert}"; 196 wantedBy = [ "timers.target" ]; 197 timerConfig = { 198 OnCalendar = cfg.renewInterval;
··· 152 in nameValuePair 153 ("acme-${cert}") 154 ({ 155 + description = "Renew ACME Certificate for ${cert}"; 156 after = [ "network.target" ]; 157 serviceConfig = { 158 Type = "oneshot"; ··· 192 systemd.timers = flip mapAttrs' cfg.certs (cert: data: nameValuePair 193 ("acme-${cert}") 194 ({ 195 + description = "Renew ACME Certificate for ${cert}"; 196 wantedBy = [ "timers.target" ]; 197 timerConfig = { 198 OnCalendar = cfg.renewInterval;