nixos/routinator: fix service being always enabled

This commit is contained in:
Peter Lehmann 2025-02-21 23:48:43 +01:00
parent 798e8fcf0e
commit 13ff2e0395
No known key found for this signature in database
GPG Key ID: C141E17790DC45F7

View File

@ -11,6 +11,7 @@ let
getExe
maintainers
mkEnableOption
mkIf
mkPackageOption
mkOption
types
@ -135,7 +136,7 @@ in
};
};
config = {
config = mkIf cfg.enable {
systemd.services.routinator = {
description = "Routinator 3000 is free, open-source RPKI Relying Party software made by NLnet Labs.";
wantedBy = [ "multi-user.target" ];