summary refs log tree commit diff
path: root/lib/modules.nix
Commit message (Collapse)AuthorAge
* Revert "Add the tool "nixos-typecheck" that can check an option declaration to:"Eelco Dolstra2016-03-01
| | | | | | This reverts commit cad8957eabcbf73062226d28366fd446c15c8737. It breaks NixOps, but more importantly, such major changes to the module system really need to be reviewed.
* Add the tool "nixos-typecheck" that can check an option declaration to:Thomas Strobel2016-02-29
| | | | | | | | | | | | | | - Enforce that an option declaration has a "defaultText" if and only if the type of the option derives from "package", "packageSet" or "nixpkgsConfig" and if a "default" attribute is defined. - Enforce that the value of the "example" attribute is wrapped with "literalExample" if the type of the option derives from "package", "packageSet" or "nixpkgsConfig". - Warn if a "defaultText" is defined in an option declaration if the type of the option does not derive from "package", "packageSet" or "nixpkgsConfig". - Warn if no "type" is defined in an option declaration.
* Factor out option renamingEelco Dolstra2015-10-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Option aliases/deprecations can now be declared in any NixOS module, not just in nixos/modules/rename.nix. This is more modular (since it allows for example grub-related aliases to be declared in the grub module), and allows aliases outside of NixOS (e.g. in NixOps modules). The syntax is a bit funky. Ideally we'd have something like: options = { foo.bar.newOption = mkOption { ... }; foo.bar.oldOption = mkAliasOption [ "foo" "bar" "newOption" ]; }; but that's not possible because options cannot define values in *other* options - you need to have a "config" for that. So instead we have functions that return a *module*: mkRemovedOptionModule, mkRenamedOptionModule and mkAliasOptionModule. These can be used via "imports", e.g. imports = [ (mkAliasOptionModule [ "foo" "bar" "oldOption" ] [ "foo" "bar" "newOption" ]); ]; As an added bonus, deprecation warnings now show the file name of the offending module. Fixes #10385.
* Update option-usages.nix expression to work with newer version of the module ↵Nicolas B. Pierron2015-08-09
| | | | system.
* Module system: Fix ‘definitions’ fieldEelco Dolstra2015-08-05
| | | | Fixes https://github.com/NixOS/nixops/issues/325.
* Add read-only optionsEelco Dolstra2015-07-30
| | | | | These are options that can have only one definition, regardless of priority.
* Remove superfluous copy of "min"Eelco Dolstra2015-07-28
|
* Minor module system evaluation speedupsEelco Dolstra2015-07-28
| | | | | | This gives about a 5% speedup. Issue #8152.
* Fix indentationEelco Dolstra2015-07-28
|
* concatLists (map ...) -> concatMapEelco Dolstra2015-07-23
|
* Use foldl' instead of fold in some placesEelco Dolstra2015-07-23
|
* NixOS modules: Add error context on module arguments evaluation.Nicolas B. Pierron2015-07-14
|
* types.uniq types.bool -> types.boolEelco Dolstra2015-06-15
|
* Bring an importable modulesPath back from the dead, in the only way I knowDan Peebles2015-06-08
|
* Document and rename internal option of modules.Nicolas B. Pierron2015-03-15
|
* Share common code for merging option definitions.Nicolas B. Pierron2015-03-12
| | | | | | | This move idioms which were used in `evalOptionValue` and in the `merge` functions of `listOf` and `attrsOf` types, such that we can use a names such as `isDefined` and `optionalValue` instead or repeating identical comparisons of `defsFinal == []`.
* Rename mergeDefinitions internal steps to functions which are independent of ↵Nicolas B. Pierron2015-03-12
| | | | each others.
* Expose submodule arguments to builtins.functionArgs before applying the ↵Nicolas B. Pierron2015-03-12
| | | | | | | | | arguments. The current implementation of the ApplyIfFunction is looking at the arguments of a module to decide which arguments should be given to each module. This patch make sure that we do not wrap a submodule function in order to keep functionArgs working as expected.
* Add comment about limitation on __internal.checkShea Levy2015-03-12
|
* Add comments about the module system interfaceShea Levy2015-03-12
| | | | | | | Ideally the module system could be configured pretty much completely by the contents of the modules themselves, so add comments about avoiding complicating it further and possibly removing now-redundant configurability from the existing interface.
* evalModules: Add internal option for the check argumentShea Levy2015-03-12
|
* nixos: Don't evaluate twice to get the value of config.nixpkgsShea Levy2015-03-12
|
* modules.nix: Generate the extra argument set from the configurationShea Levy2015-03-12
| | | | | | | This allows for module arguments to be handled modularly, in particular allowing the nixpkgs module to handle the nixpkgs import internally. This creates the __internal option namespace, which should only be added to by the module system itself.
* Move property processing, type checking, and merge code into a functionShea Levy2015-03-12
| | | | | | This makes the relationship between property types clearer, and more importantly will let option types parameterized by other option types reuse the code for delegated type checking and merging.
* modules: Extract mkAliasDefinition from the rename.nix NixOS module.Nicolas B. Pierron2014-12-22
|
* nixos: Try to show an helpful message when the user sets config. or options.Luca Bruno2014-11-01
| | | | Feel free to improve or remove :-)
* Replace hasAttr/getAttr calls with the ? and . operatorsEelco Dolstra2014-10-05
| | | | | For NixOS evaluation, this gives a ~21% reduction in the number of values allocated and a ~4% speedup. It's also more readable.
* lib: Use arithmetic operators rather than builtins.add etc.Eelco Dolstra2014-10-05
|
* Merge options having the submodule type.Nicolas Pierron2014-09-07
| | | | | | | | | | Now we should be able to have multiple declaration of the same option as long as all declarations have the same type. If the type has a sub module, then it is merged with the submodules of other declarations, as done with option sets. In addition, the file of the option declaration is passed into the submodule, such as the documentation can display it correctly.
* Annotate option-set options with the file in which they are declared.Nicolas Pierron2014-09-07
| | | | | | This modification improves NixOS manual by listing in which file, each submodule option is declared. This solve the issue that files are not reported when looking at options such as fileSystems.<name?>.neededForBoot
* Add error an message to prevent use of useless submodules.Nicolas Pierron2014-08-29
|
* minor fix in documentationJan Malakhovski2014-06-26
| | | | Signed-off-by: Domen Kožar <domen@dev.si>
* Re-introduce (marked as obsolete) mkStrict function, to allow old nixops ↵Rob Vermaas2014-05-05
| | | | deployments to keep working.
* Bring back mkOrderEelco Dolstra2014-03-30
|
* Pass lib to modulesShea Levy2014-02-11
| | | | Since mkOption, types, etc. are defined there, lib is really part of the interface
* Add some primops to libEelco Dolstra2013-11-12
|
* Fix backward compatibility with Nix < 1.6Eelco Dolstra2013-10-30
| | | | | "with" used to be less lazy, so don't rely on that. Also don't use the "<" operator.
* Show correct position info for errors in submodulesEelco Dolstra2013-10-30
| | | | | | | | E.g. The unique option `fileSystems./.device' is defined multiple times, in `/etc/nixos/configuration.nix' and `/etc/nixos/foo.nix'. This requires passing file/value tuples to the merge functions.
* Export only the files of the active definitionsEelco Dolstra2013-10-30
|
* Fix environment.checkConfigurationOptionsEelco Dolstra2013-10-29
| | | | | | This requires delaying the declaredness check until later, otherwise we get an infinite recursion querying environment.checkConfigurationOptions.
* fixMergeModules shouldn't check whether options are declaredEelco Dolstra2013-10-29
|
* Add fixMergeModules back inEelco Dolstra2013-10-29
| | | | NixOps uses it.
* Support module keys that are pathsEelco Dolstra2013-10-29
|
* Add a priority level for overrides in VM testsEelco Dolstra2013-10-29
| | | | | | | | | Now that overriding fileSystems in qemu-vm.nix works again, it's important that the VM tests that add additional file systems use the same override priority. Instead of using the same magic constant everywhere, they can now use mkVMOverride. http://hydra.nixos.org/build/6695561
* Fix nixos-optionEelco Dolstra2013-10-28
| | | | | In particular, it no longer produces an "infinite recursion" error when run with no arguments.
* Show precise error messages in option merge failuresEelco Dolstra2013-10-28
| | | | | | | | | | | | | | For instance, if time.timeZone is defined multiple times, you now get the error message: error: user-thrown exception: The unique option `time.timeZone' is defined multiple times, in `/etc/nixos/configurations/misc/eelco/x11vnc.nix' and `/etc/nixos/configuration.nix'. while previously you got: error: user-thrown exception: Multiple definitions of string. Only one is allowed for this option. and only an inspection of the stack trace gave a clue as to what option caused the problem.
* Support mkOverride in non-leaf nodesEelco Dolstra2013-10-28
|
* Allow imports in plain modulesEelco Dolstra2013-10-28
|
* Remove debug codeEelco Dolstra2013-10-28
|
* Fix evaluation of environment.variablesEelco Dolstra2013-10-28
|