From 4858ab9da83f94459632fc635277822a181903a6 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Tue, 2 Nov 2010 04:20:37 +0000 Subject: [PATCH] The DisnixWebService is now also part of the systemPackages so that a user can invoke the client tool from the command-line svn path=/nixos/trunk/; revision=24564 --- modules/services/misc/disnix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/misc/disnix.nix b/modules/services/misc/disnix.nix index abf664c9031..63b8394c280 100644 --- a/modules/services/misc/disnix.nix +++ b/modules/services/misc/disnix.nix @@ -43,7 +43,7 @@ in config = mkIf cfg.enable { - environment.systemPackages = [ pkgs.disnix ]; + environment.systemPackages = [ pkgs.disnix ] ++ optional cfg.useWebServiceInterface pkgs.DisnixWebService; services.dbus.enable = true; services.dbus.packages = [ pkgs.disnix ];