Unverified Commit 81c646c4 authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

nixos/installer/tools: only enable tools if nix is enabled (#344132)

parents 73e0dd91 e9a78e02
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -216,7 +216,7 @@ in
  imports = let
    mkToolModule = { name, package ? pkgs.${name} }: { config, ... }: {
      options.system.tools.${name}.enable = lib.mkEnableOption "${name} script" // {
        default = true;
        default = config.nix.enable;
        internal = true;
      };