nix-daemon service: Don't have the output in the `nix.package' option

1) It unnecessarily exposes implementation details.
2) It breaks all existing configs that have e.g.
   `nix.package = pkgs.nixUnstable;`.
This commit is contained in:
Tuomas Tynkkynen 2016-04-24 14:01:40 +03:00 committed by Vladimír Čunát
parent 559a563208
commit 70f5c840af

View file

@ -65,8 +65,8 @@ in
package = mkOption {
type = types.package;
default = pkgs.nix.out;
defaultText = "pkgs.nix.out";
default = pkgs.nix;
defaultText = "pkgs.nix";
description = ''
This option specifies the Nix package instance to use throughout the system.
'';