summary refs log blame commit diff
path: root/modules/misc/nixpkgs.nix
blob: 8173d716d8415c0d08ee65e4ef127f09743d338e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                         






                                                     
    
 
{ 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.
      '';
    };

  };
}