mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
32 lines
703 B
Nix
32 lines
703 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.sslmate-agent;
|
|
|
|
in {
|
|
meta.maintainers = [ ];
|
|
|
|
options = {
|
|
services.sslmate-agent = {
|
|
enable = mkEnableOption "sslmate-agent, a daemon for managing SSL/TLS certificates on a server";
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [ sslmate-agent ];
|
|
|
|
systemd = {
|
|
packages = [ pkgs.sslmate-agent ];
|
|
services.sslmate-agent = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
serviceConfig = {
|
|
ConfigurationDirectory = "sslmate-agent";
|
|
LogsDirectory = "sslmate-agent";
|
|
StateDirectory = "sslmate-agent";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|