2014-04-14 16:26:48 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-09-10 15:53:31 +02:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2009-04-29 01:05:03 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
|
2009-09-10 15:53:31 +02:00
|
|
|
options = {
|
|
|
|
|
|
|
|
assertions = mkOption {
|
2013-10-28 16:14:15 +01:00
|
|
|
type = types.listOf types.unspecified;
|
2013-10-23 16:59:33 +02:00
|
|
|
internal = true;
|
2009-09-10 15:53:31 +02:00
|
|
|
default = [];
|
2012-04-01 12:54:06 +02:00
|
|
|
example = [ { assertion = false; message = "you can't enable this for that reason"; } ];
|
2009-09-10 15:53:31 +02:00
|
|
|
description = ''
|
|
|
|
This option allows modules to express conditions that must
|
|
|
|
hold for the evaluation of the system configuration to
|
|
|
|
succeed, along with associated error messages for the user.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2013-10-23 18:21:15 +02:00
|
|
|
warnings = mkOption {
|
|
|
|
internal = true;
|
|
|
|
default = [];
|
|
|
|
type = types.listOf types.string;
|
|
|
|
example = [ "The `foo' service is deprecated and will go away soon!" ];
|
|
|
|
description = ''
|
|
|
|
This option allows modules to show warnings to users during
|
|
|
|
the evaluation of the system configuration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-04-29 01:05:03 +02:00
|
|
|
};
|
2014-04-21 17:46:16 +02:00
|
|
|
# impl of assertions is in <nixos/modules/system/activation/top-level.nix>
|
2009-04-29 01:05:03 +02:00
|
|
|
}
|