0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

nixos: set all package options to have type package

This commit is contained in:
Domen Kožar 2014-02-27 13:22:04 +01:00
parent f7c04b1e6b
commit 97a0dd9eb9
9 changed files with 9 additions and 4 deletions

View file

@ -42,6 +42,7 @@ in
package = mkOption {
default = pkgs.cgminer;
description = "Which cgminer derivation to use.";
type = types.package;
};
user = mkOption {

View file

@ -58,7 +58,7 @@ in
nix = {
package = mkOption {
type = types.path;
type = types.package;
default = pkgs.nix;
description = ''
This option specifies the Nix package instance to use throughout the system.