nixpkgs/lib
Eelco Dolstra 0e333688ce Big cleanup of the NixOS module system
The major changes are:

* The evaluation is now driven by the declared options.  In
  particular, this fixes the long-standing problem with lack of
  laziness of disabled option definitions.  Thus, a configuration like

    config = mkIf false {
      environment.systemPackages = throw "bla";
    };

  will now evaluate without throwing an error.  This also improves
  performance since we're not evaluating unused option definitions.

* The implementation of properties is greatly simplified.

* There is a new type constructor "submodule" that replaces
  "optionSet".  Unlike "optionSet", "submodule" gets its option
  declarations as an argument, making it more like "listOf" and other
  type constructors.  A typical use is:

    foo = mkOption {
      type = type.attrsOf (type.submodule (
        { config, ... }:
        { bar = mkOption { ... };
          xyzzy = mkOption { ... };
        }));
    };

  Existing uses of "optionSet" are automatically mapped to
  "submodule".

* Modules are now checked for unsupported attributes: you get an error
  if a module contains an attribute other than "config", "options" or
  "imports".

* The new implementation is faster and uses much less memory.
2013-10-28 22:45:55 +01:00
..
attrsets.nix Move pkgs/lib/ to lib/ 2013-10-10 13:28:21 +02:00
composable-derivation.nix Move pkgs/lib/ to lib/ 2013-10-10 13:28:21 +02:00
customisation.nix Move pkgs/lib/ to lib/ 2013-10-10 13:28:21 +02:00
debug.nix Move pkgs/lib/ to lib/ 2013-10-10 13:28:21 +02:00
default.nix Big cleanup of the NixOS module system 2013-10-28 22:45:55 +01:00
licenses.nix Adding SlimerJS — script-driven Gecko browser 2013-10-21 00:30:39 +04:00
lists.nix Big cleanup of the NixOS module system 2013-10-28 22:45:55 +01:00
maintainers.nix maintainers: add vlstill. 2013-10-27 06:33:14 +02:00
meta.nix Move pkgs/lib/ to lib/ 2013-10-10 13:28:21 +02:00
misc.nix Small cleanup 2013-10-24 14:49:59 +02:00
modules.nix Big cleanup of the NixOS module system 2013-10-28 22:45:55 +01:00
options.nix Big cleanup of the NixOS module system 2013-10-28 22:45:55 +01:00
platforms.nix Move pkgs/lib/ to lib/ 2013-10-10 13:28:21 +02:00
sources.nix Move pkgs/lib/ to lib/ 2013-10-10 13:28:21 +02:00
strings-with-deps.nix Move pkgs/lib/ to lib/ 2013-10-10 13:28:21 +02:00
strings.nix Move pkgs/lib/ to lib/ 2013-10-10 13:28:21 +02:00
systems.nix Move pkgs/lib/ to lib/ 2013-10-10 13:28:21 +02:00
tests.nix Move pkgs/lib/ to lib/ 2013-10-10 13:28:21 +02:00
trivial.nix Move pkgs/lib/ to lib/ 2013-10-10 13:28:21 +02:00
types.nix Big cleanup of the NixOS module system 2013-10-28 22:45:55 +01:00