17 lines
281 B
Nix
17 lines
281 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
options = {
|
||
|
|
||
|
nixpkgs.config = pkgs.lib.mkOption {
|
||
|
default = {};
|
||
|
example = {
|
||
|
firefox.enableGeckoMediaPlayer = true;
|
||
|
};
|
||
|
description = ''
|
||
|
The configuration of the Nix Packages collection.
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
};
|
||
|
}
|