9002335101
svn path=/nixos/trunk/; revision=20274
25 lines
455 B
Nix
25 lines
455 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
options = {
|
|
|
|
nixpkgs.config = pkgs.lib.mkOption {
|
|
default = {};
|
|
example = {
|
|
firefox.enableGeckoMediaPlayer = true;
|
|
};
|
|
description = ''
|
|
The configuration of the Nix Packages collection.
|
|
'';
|
|
};
|
|
|
|
nixpkgs.platform = pkgs.lib.mkOption {
|
|
default = pkgs.platforms.pc;
|
|
description = ''
|
|
The platform for the Nix Packages collection.
|
|
'';
|
|
};
|
|
|
|
};
|
|
}
|