summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorMichael Hoang <Enzime@users.noreply.github.com>2024-08-17 11:59:09 +1000
committerGitHub <noreply@github.com>2024-08-17 11:59:09 +1000
commit076b9a905af8a52b866c8db068d6da475839d97b (patch)
tree70bfe0ea3d52797674d5283782aa09cad6fdf793 /modules/system
parent91010a5613ffd7ee23ee9263213157a1c422b705 (diff)
parent5afa71b4131a97d72804a97a34bd4a916ea5e990 (diff)
Merge pull request #1026 from thecaralice/nochan
Allow disabling channels
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/checks.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/checks.nix b/modules/system/checks.nix
index 6d9b2cf..ce06e2f 100644
--- a/modules/system/checks.nix
+++ b/modules/system/checks.nix
@@ -236,7 +236,7 @@ in
system.checks.verifyNixChannels = mkOption {
type = types.bool;
- default = true;
+ default = config.nix.channel.enable;
description = "Whether to run the nix-channels validation checks.";
};