From 7ae2d221cd13fd13c477387fb93aa5fb33f6bafa Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 28 Dec 2016 06:35:31 +0100 Subject: [PATCH] bird service: add bird to systemPackages For the tool birdc to monitor and configure bird. --- nixos/modules/services/networking/bird.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/networking/bird.nix b/nixos/modules/services/networking/bird.nix index 174354c9eb40..1a7a1e24b702 100644 --- a/nixos/modules/services/networking/bird.nix +++ b/nixos/modules/services/networking/bird.nix @@ -34,6 +34,7 @@ let ###### implementation config = mkIf cfg.enable { + environment.systemPackages = [ pkg ]; systemd.services.${variant} = { description = "BIRD Internet Routing Daemon"; wantedBy = [ "multi-user.target" ];