forked from mirrors/nixpkgs
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:
parent
559a563208
commit
70f5c840af
|
@ -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.
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue