about summary refs log tree commit diff
path: root/nixos/modules/misc
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2014-05-05 16:23:57 -0400
committerNicolas B. Pierron <nicolas.b.pierron@gmail.com>2015-03-12 23:42:57 +0100
commite3eff53037f1b7abb7a44ba72f59f20649023642 (patch)
tree4e48d6f16aca424ee144a05390c481aa824ee070 /nixos/modules/misc
parente4a06f35b1d88ab98fa8b6962e7a3f802232d165 (diff)
downloadnixlib-e3eff53037f1b7abb7a44ba72f59f20649023642.tar
nixlib-e3eff53037f1b7abb7a44ba72f59f20649023642.tar.gz
nixlib-e3eff53037f1b7abb7a44ba72f59f20649023642.tar.bz2
nixlib-e3eff53037f1b7abb7a44ba72f59f20649023642.tar.lz
nixlib-e3eff53037f1b7abb7a44ba72f59f20649023642.tar.xz
nixlib-e3eff53037f1b7abb7a44ba72f59f20649023642.tar.zst
nixlib-e3eff53037f1b7abb7a44ba72f59f20649023642.zip
evalModules: Add internal option for the check argument
Diffstat (limited to 'nixos/modules/misc')
-rw-r--r--nixos/modules/misc/check-config.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/nixos/modules/misc/check-config.nix b/nixos/modules/misc/check-config.nix
deleted file mode 100644
index e9803de21961..000000000000
--- a/nixos/modules/misc/check-config.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ lib, ... }:
-
-with lib;
-
-{
-  options = {
-    environment.checkConfigurationOptions = mkOption {
-      type = types.bool;
-      default = true;
-      description = ''
-        Whether to check the validity of the entire configuration.
-      '';
-    };
-  };
-}