2009-08-26 18:52:38 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
|
|
|
|
nixpkgs.config = pkgs.lib.mkOption {
|
|
|
|
default = {};
|
|
|
|
example = {
|
|
|
|
firefox.enableGeckoMediaPlayer = true;
|
|
|
|
};
|
|
|
|
description = ''
|
|
|
|
The configuration of the Nix Packages collection.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2010-02-27 19:37:12 +01:00
|
|
|
nixpkgs.platform = pkgs.lib.mkOption {
|
|
|
|
default = pkgs.platforms.pc;
|
|
|
|
description = ''
|
|
|
|
The platform for the Nix Packages collection.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-08-26 18:52:38 +02:00
|
|
|
};
|
2010-02-27 19:37:12 +01:00
|
|
|
}
|