Unverified Commit 54bf6ddd authored by Fernando Rodrigues's avatar Fernando Rodrigues Committed by GitHub
Browse files

nixos/fish: fix documentation eval error (#514899)

parents 06b94406 108d6572
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -302,7 +302,9 @@ in
                  fi
                '';
            packages =
              if config.documentation.nixos.enable && config.documentation.man.enable then
              if
                config.documentation.enable && config.documentation.nixos.enable && config.documentation.man.enable
              then
                builtins.filter (pkg: pkg != config.system.build.manual.nixos-configuration-reference-manpage) (
                  cfge.systemPackages ++ cfg.extraCompletionPackages
                )