2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-09-10 13:53:31 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2009-04-28 23:05:03 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
|
2009-09-10 13:53:31 +00:00
|
|
|
options = {
|
|
|
|
|
|
|
|
assertions = mkOption {
|
2013-10-28 15:14:15 +00:00
|
|
|
type = types.listOf types.unspecified;
|
2013-10-23 14:59:33 +00:00
|
|
|
internal = true;
|
2009-09-10 13:53:31 +00:00
|
|
|
default = [];
|
2012-04-01 10:54:06 +00:00
|
|
|
example = [ { assertion = false; message = "you can't enable this for that reason"; } ];
|
2009-09-10 13:53:31 +00: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 16:21:15 +00:00
|
|
|
warnings = mkOption {
|
|
|
|
internal = true;
|
|
|
|
default = [];
|
2015-06-15 16:18:46 +00:00
|
|
|
type = types.listOf types.str;
|
2013-10-23 16:21:15 +00:00
|
|
|
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-28 23:05:03 +00:00
|
|
|
};
|
2015-08-05 13:52:12 +00:00
|
|
|
# impl of assertions is in <nixpkgs/nixos/modules/system/activation/top-level.nix>
|
2009-04-28 23:05:03 +00:00
|
|
|
}
|