mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-04 22:34:04 +00:00
18 lines
282 B
Nix
18 lines
282 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
options = {
|
|
|
|
nixpkgs.config = pkgs.lib.mkOption {
|
|
default = {};
|
|
example = {
|
|
firefox.enableGeckoMediaPlayer = true;
|
|
};
|
|
description = ''
|
|
The configuration of the Nix Packages collection.
|
|
'';
|
|
};
|
|
|
|
};
|
|
}
|